1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
// GetDP - Copyright (C) 1997-2018 P. Dular and C. Geuzaine, University of Liege
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/getdp/getdp/issues
#ifndef _GET_FUNCTION_VALUE_H_
#define _GET_FUNCTION_VALUE_H_
#include "ProData.h"
int Get_ValueFromForm(int Form);
struct IntegrationCase * Get_IntegrationCase (struct Element * Element,
List_T *IntegrationCase_L,
int CriterionIndex);
void Get_FunctionValue(int Nbr_Function,
void (*xFunctionBF[])(),
int Type_Operator,
struct QuantityStorage * QuantityStorage_P,
int * Type_Form);
void Get_InitFunctionValue(int Type_Operator,
struct QuantityStorage * QuantityStorage_P,
int * Type_Form);
double Cal_InterpolationOrder(struct Element * Element,
struct QuantityStorage * QuantityStorage);
double Cal_MaxEdgeLength(struct Element * Element);
#endif
|