1 // GetDP - Copyright (C) 1997-2021 P. Dular and C. Geuzaine, University of Liege 2 // 3 // See the LICENSE.txt file for license information. Please report all 4 // issues on https://gitlab.onelab.info/getdp/getdp/issues. 5 6 #ifndef POS_FORMULATION_H 7 #define POS_FORMULATION_H 8 9 #include "ProData.h" 10 #include "ListUtils.h" 11 12 void Pos_Formulation(struct Formulation *Formulation_P, 13 struct PostProcessing *PostProcessing_P, 14 struct PostSubOperation *PostSubOperation_P); 15 16 void Pos_FemFormulation(struct Formulation * Formulation_P, 17 struct PostQuantity * LocalPQ, 18 struct PostQuantity * CummulativePQ, 19 int Order, 20 struct PostSubOperation * PostSubOperation_P) ; 21 22 int Pos_InitTimeSteps(struct PostSubOperation * PostSubOperation_P) ; 23 void Pos_InitAllSolutions(List_T * TimeStep_L, int Index_TimeStep) ; 24 void Pos_ResampleTime(struct PostOperation *PostOperation_P); 25 26 #endif 27