Skip to content
Snippets Groups Projects
Select Git revision
  • a396ce8f0a743c7959236ecb0c2337641be34d0f
  • master default
  • cgnsUnstructured
  • partitioning
  • poppler
  • HighOrderBLCurving
  • gmsh_3_0_4
  • gmsh_3_0_3
  • gmsh_3_0_2
  • gmsh_3_0_1
  • gmsh_3_0_0
  • gmsh_2_16_0
  • gmsh_2_15_0
  • gmsh_2_14_1
  • gmsh_2_14_0
  • gmsh_2_13_2
  • gmsh_2_13_1
  • gmsh_2_12_0
  • gmsh_2_11_0
  • gmsh_2_10_1
  • gmsh_2_10_0
  • gmsh_2_9_3
  • gmsh_2_9_2
  • gmsh_2_9_1
  • gmsh_2_9_0
  • gmsh_2_8_6
26 results

FAQ

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    Get_ConstraintOfElement.h 1.19 KiB
    // GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
    //
    // See the LICENSE.txt file for license information. Please report all
    // bugs and problems to the public mailing list <getdp@onelab.info>.
    
    #ifndef _GET_CONSTRAINT_OF_ELEMENT_H_
    #define _GET_CONSTRAINT_OF_ELEMENT_H_
    
    #include "ProData.h"
    
    void  Treatment_ConstraintForElement(struct FunctionSpace    * FunctionSpace_P,
    				     struct QuantityStorage  * QuantityStorage_P,
    				     int Num_Entity[], int i_Entity,
    				     int i_BFunction, int TypeConstraint) ;
    
    void  Treatment_ConstraintForRegion(struct GlobalQuantity   * GlobalQuantity_P,
    				    struct FunctionSpace    * FunctionSpace_P,
    				    struct QuantityStorage  * QuantityStorage_P) ;
    
    void  Get_ValueForConstraint(struct ConstraintInFS * Constraint_P,
                                 double Value[], double Value2[],
    			     int * Index_TimeFunction, bool KeepCurrentElement=false) ;
    void  Get_PreResolutionForConstraint(struct ConstraintInFS * Constraint_P,
    				     int * Index_TimeFunction) ;
    void  Get_LinkForConstraint(struct ConstraintInFS * Constraint_P,
    			    int Num_Entity, int * CodeEntity_Link,
                                int Orient, double Value[]) ;
    
    #endif