modifications for adding boundary condtions
This commit is contained in:
parent
818106a34a
commit
821dde9b1c
|
@ -6,7 +6,7 @@ project(phasicFlow VERSION 1.0 )
|
|||
set(CMAKE_CXX_STANDARD 17 CACHE STRING "" FORCE)
|
||||
set(CMAKE_CXX_STANDARD_REQUIRED True)
|
||||
set(CMAKE_INSTALL_PREFIX ${phasicFlow_SOURCE_DIR} CACHE PATH "Install path of phasicFlow" FORCE)
|
||||
set(CMAKE_BUILD_TYPE Release CACHE STRING "build type" FORCE)
|
||||
set(CMAKE_BUILD_TYPE Relase CACHE STRING "build type" FORCE)
|
||||
set(BUILD_SHARED_LIBS ON CACHE BOOL "Build using shared libraries" FORCE)
|
||||
mark_as_advanced(FORCE var BUILD_SHARED_LIBS)
|
||||
|
||||
|
|
|
@ -88,7 +88,7 @@ initialize_pFlowProcessors();
|
|||
"particle insertion failed in sphereDFlow solver.\n";
|
||||
return 1;
|
||||
}*/
|
||||
|
||||
|
||||
// set force to zero
|
||||
surfGeometry.beforeIteration();
|
||||
|
||||
|
|
|
@ -128,6 +128,12 @@ public:
|
|||
return dynPointStruct_.thisDomain();
|
||||
}
|
||||
|
||||
inline
|
||||
const auto& extendedDomain()const
|
||||
{
|
||||
return dynPointStruct_.extendedDomain();
|
||||
}
|
||||
|
||||
inline auto size()const{
|
||||
return dynPointStruct_.size();
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@ int main(int argc, char** argv )
|
|||
" date in time folders into vtk file format.");
|
||||
|
||||
wordVector times;
|
||||
|
||||
|
||||
bool noGoem = false;
|
||||
cmds.add_flag(
|
||||
"--no-geometry",
|
||||
|
@ -57,7 +57,7 @@ int main(int argc, char** argv )
|
|||
cmds.addOption("-o,--out-folder",
|
||||
outFolder,
|
||||
"path to output folder of VTK",
|
||||
"path");
|
||||
"path");
|
||||
|
||||
bool separateSurfaces = false;
|
||||
cmds.add_flag(
|
||||
|
|
Loading…
Reference in New Issue