1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
// 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 _POS_FEM_INTERPOLATION_H_
#define _POS_FEM_INTERPOLATION_H_
#include "ProData.h"
void Pos_FemInterpolation(struct Element * Element,
struct QuantityStorage * QuantityStorage_P0,
struct QuantityStorage * QuantityStorage_P,
int Type_Quantity, int Type_Operator,
int Type_Dimension, int UseXYZ,
double u, double v, double w,
double x, double y, double z,
double Val[], int * Type_Value,
int Flag_ChangeOfCoordinates);
#endif
|