Added acIntegrateGBC()

This commit is contained in:
Miikka Vaisala
2020-11-20 15:37:37 +08:00
parent efd3cc40cd
commit 8732480cd9
3 changed files with 124 additions and 6 deletions

View File

@@ -232,6 +232,11 @@ AcResult acStore(AcMesh* host_mesh);
* substep and the user is responsible for calling acBoundcondStep before reading the data. */
AcResult acIntegrate(const AcReal dt);
/** Performs Runge-Kutta 3 integration. Note: Boundary conditions are not applied after the final
* substep and the user is responsible for calling acBoundcondStep before reading the data.
* Has customizable boundary conditions. */
AcResult acIntegrateGBC(const AcMeshInfo config, const AcReal dt);
/** Applies periodic boundary conditions for the Mesh distributed among the devices visible to
* the caller*/
AcResult acBoundcondStep(void);