Skip to content
Snippets Groups Projects
Select Git revision
  • fcecb101c342200368734ba25499b15bffcf4b34
  • master default protected
  • test-dof-hash
  • dof-renumbering
  • gdemesy-master-patch-30528
  • eval-space-time
  • oscillating_multiharm
  • MH_movement
  • axisqu
  • write_vtu_and_ensight_formats
  • movingband
  • CP_1972_add_vtu_file_writing
  • mortar
  • fast_freq_sweep_Resolution
  • applyresolvent_again
  • marteaua-master-patch-54323
  • patch-1
  • binde-master-patch-08072
  • binde-master-patch-52461
  • BCGSL
  • resolvent
  • getdp_3_5_0
  • getdp_3_4_0
  • getdp_3_3_0
  • getdp_3_2_0
  • getdp_3_1_0
  • getdp_3_0_4
  • getdp_3_0_3
  • getdp_3_0_2
  • getdp_3_0_1
  • getdp_3_0_0
  • onelab_mobile_2.1.0
  • getdp_2_11_3 protected
  • getdp_2_11_2 protected
  • getdp_2_11_1 protected
  • getdp_2_11_0 protected
  • getdp_2_10_0 protected
  • getdp_2_9_2 protected
  • getdp_2_9_1 protected
  • getdp_2_9_0 protected
  • getdp_2_8_0 protected
41 results

Cal_Quantity.h

Blame
  • 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