Skip to content
Snippets Groups Projects
Select Git revision
  • fd7e856927dcd75489db6e91453e1b9246a4dca3
  • master default protected
  • alphashapes
  • quadMeshingTools
  • cygwin_conv_path
  • macos_arm64
  • add-transfiniteautomatic-to-geo
  • patch_releases_4_10
  • HierarchicalHDiv
  • isuruf-master-patch-63355
  • hyperbolic
  • hexdom
  • hxt_update
  • jf
  • 1618-pythonocc-and-gmsh-api-integration
  • octreeSizeField
  • hexbl
  • alignIrregularVertices
  • getEdges
  • patch_releases_4_8
  • isuruf-master-patch-51992
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
  • gmsh_4_8_4
  • gmsh_4_8_3
  • gmsh_4_8_2
  • gmsh_4_8_1
  • gmsh_4_8_0
  • gmsh_4_7_1
  • gmsh_4_7_0
41 results

meshGRegionLocalMeshMod.cpp

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    Cal_Quantity.h 1.30 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 _CAL_QUANTITY_H_
    #define _CAL_QUANTITY_H_
    
    #include "ProData.h"
    #include "ListUtils.h"
    
    void  Get_ValueOfExpression(struct Expression *Expression_P,
    			    struct QuantityStorage *QuantityStorage_P0,
    			    double u, double v, double w,
    			    struct Value *Value,
    			    int NbrArguments=0,
    			    char *CallingExpressionName=NULL);
    
    void  Get_ValueOfExpressionByIndex(int Index_Expression,
    				   struct QuantityStorage *QuantityStorage_P0,
    				   double u, double v, double w,
    				   struct Value *Value);
    
    void  Cal_WholeQuantity(struct Element *Element,
    			struct QuantityStorage *QuantityStorage_P0,
    			List_T *WholeQuantity_L,
    			double u, double v, double w,
    			int Index_Dof, int Nbr_Dof, struct Value DofValue[],
    			int NbrArguments=0, char *ExpressionName=NULL);
    
    void Cal_StoreInRegister(struct Value *Value, int RegisterIndex);
    
    void Cal_StoreInVariable(struct Value *Value, const char *name);
    void Cal_GetValueSaved(struct Value *Value, const char *name);
    std::map<std::string, struct Value> &Get_AllValueSaved();
    
    bool Is_ExpressionConstant(struct Expression *Expression_P);
    
    #endif