X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FNETGENPlugin%2FNETGENPlugin_NETGEN_3D_Remote.cxx;fp=src%2FNETGENPlugin%2FNETGENPlugin_NETGEN_3D_Remote.cxx;h=8b3b551fcf0340ab4d71f1ec93c2ec807e8c6209;hb=8f71164d607f2ee55dbeebee6d5885e956e45bde;hp=dad9cec736807b67a08054d47cbc9fb3df995acf;hpb=5f3ae9218dd9e49206b6f7857ad5b61b6153b45e;p=plugins%2Fnetgenplugin.git diff --git a/src/NETGENPlugin/NETGENPlugin_NETGEN_3D_Remote.cxx b/src/NETGENPlugin/NETGENPlugin_NETGEN_3D_Remote.cxx index dad9cec..8b3b551 100644 --- a/src/NETGENPlugin/NETGENPlugin_NETGEN_3D_Remote.cxx +++ b/src/NETGENPlugin/NETGENPlugin_NETGEN_3D_Remote.cxx @@ -143,6 +143,7 @@ void NETGENPlugin_NETGEN_3D_Remote::fillParameters(const NETGENPlugin_Hypothesis // const char* aParams.meshsizefilename = hyp->GetMeshSizeFile(); aParams.closeedgefac = 0; + aParams.nbThreads = 0; #endif } @@ -232,13 +233,13 @@ bool NETGENPlugin_NETGEN_3D_Remote::Compute(SMESH_Mesh& aMesh, // Temporary folder for run #ifdef WIN32 - fs::path tmp_folder = aMesh.tmp_folder / fs::path("Volume-%%%%-%%%%"); + fs::path tmp_folder = aMesh.GetTmpFolder() / fs::path("Volume-%%%%-%%%%"); #else - fs::path tmp_folder = aMesh.tmp_folder / fs::unique_path(fs::path("Volume-%%%%-%%%%")); + fs::path tmp_folder = aMesh.GetTmpFolder() / fs::unique_path(fs::path("Volume-%%%%-%%%%")); #endif fs::create_directories(tmp_folder); // Using MESH2D generated after all triangles where created. - fs::path mesh_file=aMesh.tmp_folder / fs::path("Mesh2D.med"); + fs::path mesh_file=aMesh.GetTmpFolder() / fs::path("Mesh2D.med"); fs::path element_orientation_file=tmp_folder / fs::path("element_orientation.dat"); fs::path new_element_file=tmp_folder / fs::path("new_elements.dat"); fs::path tmp_mesh_file=tmp_folder / fs::path("tmp_mesh.med");