Added acBoundcondStepGBC() for flexible boundary conditions.
This commit is contained in:
@@ -241,6 +241,10 @@ AcResult acIntegrateGBC(const AcMeshInfo config, const AcReal dt);
|
|||||||
* the caller*/
|
* the caller*/
|
||||||
AcResult acBoundcondStep(void);
|
AcResult acBoundcondStep(void);
|
||||||
|
|
||||||
|
/** Applies general outer boundary conditions for the Mesh distributed among the devices visible to
|
||||||
|
* the caller*/
|
||||||
|
AcResult acBoundcondStepGBC(const AcMeshInfo config);
|
||||||
|
|
||||||
/** Does a scalar reduction with the data stored in some vertex buffer */
|
/** Does a scalar reduction with the data stored in some vertex buffer */
|
||||||
AcReal acReduceScal(const ReductionType rtype, const VertexBufferHandle vtxbuf_handle);
|
AcReal acReduceScal(const ReductionType rtype, const VertexBufferHandle vtxbuf_handle);
|
||||||
|
|
||||||
|
@@ -117,9 +117,9 @@ acBoundcondStep(void)
|
|||||||
}
|
}
|
||||||
|
|
||||||
AcResult
|
AcResult
|
||||||
acBoundcondStepGBC(void) //TODO ADAPT
|
acBoundcondStepGBC(const AcMeshInfo config)
|
||||||
{
|
{
|
||||||
return acNodeGeneralBoundconds(nodes[0], STREAM_DEFAULT);
|
return acNodeGeneralBoundconds(nodes[0], STREAM_DEFAULT, config);
|
||||||
}
|
}
|
||||||
|
|
||||||
AcReal
|
AcReal
|
||||||
|
Reference in New Issue
Block a user