# scripts / static / binaries
# temporary standalone project version of mg-hybrid.exe
SET(_bin_SCRIPTS
- mg-hybrid.bash
- mg-hybrid.exe_Linux_64_avril2014
- mg-hybrid.exe_Linux_64_juillet2014
createGroupsOnEntitiesFromGMFFile.py
)
cmd << " --boundary_layer_surface_tags ";
for ( size_t i = 0; i < faceLayersIDs.size(); ++i )
cmd << faceLayersIDs[i] << ",";
- if ( !faceLayersIDs.empty() )
- cmd << " --boundary_layer_initial_height_on_surface_tags ";
- for ( size_t i = 0; i < faceLayersIDs.size(); ++i )
- cmd << hyp->myHeightFirstLayer << ",";
+ // Don't need to set the height of the layer face by face since:
+ // - the same height is already set on all the faces with boundary_layer_global_initial_height
+ // - we don't allow the user to set different heights for specific faces for now
+ // nor in GUI nor in python (it will require a further improvement if needed)
+// if ( !faceLayersIDs.empty() )
+// cmd << " --boundary_layer_initial_height_on_surface_tags ";
+// for ( size_t i = 0; i < faceLayersIDs.size(); ++i )
+// cmd << hyp->myHeightFirstLayer << ",";
// faces with imprinting
const std::vector<int>& faceImprintingIDs = hyp->GetFacesWithImprinting();
std::string HYBRIDPlugin_Hypothesis::GetExeName()
{
- //call mg-hybrid.bash is script which assumes new project version(s) mg-hybrid.exe in the prerequisite base and special? licence.
-#ifdef WIN32
return "mg-hybrid.exe";
-#else
- return "mg-hybrid.bash";
-#endif
}
//=============================================================================