Skip to content
Snippets Groups Projects
Commit 1b388ea5 authored by Oliver Sander's avatar Oliver Sander
Browse files

Adapt to changes in CreateBoundaryValueProblem interface

parent 1ea3b7fe
No related branches found
No related tags found
1 merge request!761[uggrid] Simplify domain creation
......@@ -85,10 +85,6 @@ UGGrid < dim >::UGGrid(UGCommunication comm)
free(arg);
}
// Create a dummy problem
typename UG_NS<dim>::CoeffProcPtr coeffs[1] = {nullptr};
typename UG_NS<dim>::UserProcPtr upp[1] = {nullptr};
// Create unique problem name
std::stringstream numberAsAscii;
numberAsAscii << numOfUGGrids;
......@@ -96,7 +92,7 @@ UGGrid < dim >::UGGrid(UGCommunication comm)
std::string problemName = name_ + "_Problem";
if (UG_NS<dim>::CreateBoundaryValueProblem(problemName.c_str(), 1,coeffs,1,upp) == nullptr)
if (UG_NS<dim>::CreateBoundaryValueProblem(problemName.c_str()) == nullptr)
DUNE_THROW(GridError, "UG" << dim << "d::CreateBoundaryValueProblem() returned an error code!");
numOfUGGrids++;
......
......@@ -413,10 +413,6 @@ createGrid()
typename UG_NS<dimworld>::BVP* theBVP = UG_NS<dimworld>::BVP_GetByName(BVPName.c_str());
assert(theBVP);
typename UG_NS<dimworld>::BVP_DESC theBVPDesc;
if (BVP_SetBVPDesc(theBVP,&theBVPDesc) != 0)
DUNE_THROW(GridError, "Calling BVP_SetBVPDesc failed!");
if (STD_BVP_Configure(BVPName,std::move(ugDomain)))
DUNE_THROW(GridError, "Calling STD_BVP_Configure failed!");
......
......@@ -54,10 +54,6 @@ namespace Dune {
typedef UG_NAMESPACE ::RefinementRule RefinementRule;
typedef UG_NAMESPACE ::CoeffProcPtr CoeffProcPtr;
typedef UG_NAMESPACE ::UserProcPtr UserProcPtr;
typedef UG_NAMESPACE ::BndSegFuncPtr BndSegFuncPtr;
/** \brief This is actually a type of the UG algebra, not the grid.
......@@ -83,8 +79,6 @@ namespace Dune {
typedef UG_NAMESPACE ::BVP BVP;
typedef UG_NAMESPACE ::BVP_DESC BVP_DESC;
/** \brief Point on a UG boundary patch */
typedef UG_NAMESPACE ::BNDP BNDP;
......@@ -1064,13 +1058,8 @@ namespace Dune {
}
//! \todo Please doc me!
static void* CreateBoundaryValueProblem(const char* BVPname,
int numOfCoeffFunc,
UG_NAMESPACE ::CoeffProcPtr coeffs[],
int numOfUserFct,
UG_NAMESPACE ::UserProcPtr userfct[]) {
return UG_NAMESPACE ::CreateBoundaryValueProblem(BVPname, 0, numOfCoeffFunc, coeffs,
numOfUserFct, userfct);
static void* CreateBoundaryValueProblem(const char* BVPname) {
return UG_NAMESPACE ::CreateBoundaryValueProblem(BVPname);
}
//! Set the current boundary value problem
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment