Skip to content
Snippets Groups Projects
Commit 467f9b4c authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

tweaks

parent 84a023cd
Branches
Tags
No related merge requests found
...@@ -405,7 +405,7 @@ int SystemCall(const std::string &command, bool blocking) ...@@ -405,7 +405,7 @@ int SystemCall(const std::string &command, bool blocking)
if(isPython || isExe){ if(isPython || isExe){
if(access(exe.c_str(), X_OK)){ if(access(exe.c_str(), X_OK)){
if(isPython){ if(isPython){
Msg::Info("Script '%s' is not executable: running with python", Msg::Info("Script '%s' is not executable: running with python",
exe.c_str()); exe.c_str());
cmd = "python " + cmd; cmd = "python " + cmd;
} }
......
...@@ -567,7 +567,7 @@ void MeshDelaunayVolume(std::vector<GRegion*> &regions) ...@@ -567,7 +567,7 @@ void MeshDelaunayVolume(std::vector<GRegion*> &regions)
(Msg::GetVerbosity() > 6) ? 'V': '\0'); (Msg::GetVerbosity() > 6) ? 'V': '\0');
} }
else { else {
sprintf(opts, "-Ype%c", sprintf(opts, "Ype%c",
(Msg::GetVerbosity() < 3) ? 'Q': (Msg::GetVerbosity() < 3) ? 'Q':
(Msg::GetVerbosity() > 6) ? 'V': '\0'); (Msg::GetVerbosity() > 6) ? 'V': '\0');
// removed -q because mesh sizes at new vertices are wrong // removed -q because mesh sizes at new vertices are wrong
......
Mesh.Algorithm = 8; //(1=MeshAdapt, 2=Automatic, 5=Delaunay, 6=Frontal, 7=bamg, 8=delquad) Mesh.Algorithm = 1; //(1=MeshAdapt, 2=Automatic, 5=Delaunay, 6=Frontal, 7=bamg, 8=delquad)
Mesh.RemeshParametrization=7; //(0=harmonic_circle, 1=conformal, 2=rbf, 3=harmonic_plane, 4=convex_circle, 5=convex_plane, 6=harmonic square" Mesh.RemeshParametrization=1; //(0=harmonic_circle, 1=conformal, 2=rbf, 3=harmonic_plane, 4=convex_circle, 5=convex_plane, 6=harmonic square"
Mesh.RemeshAlgorithm=1; //(0) nosplit (1) automatic (2) split metis Mesh.RemeshAlgorithm=1; //(0) nosplit (1) automatic (2) split metis
Mesh.CharacteristicLengthFactor=0.1; Mesh.CharacteristicLengthFactor=0.1;
......
2.8.1 (July ?, 2013): improved compound surfaces.
2.8.0 (July 8, 2013): improved Delaunay point insertion; fixed mesh orientation 2.8.0 (July 8, 2013): improved Delaunay point insertion; fixed mesh orientation
of plane surfaces; fixed mesh size prescribed at embedded points; improved of plane surfaces; fixed mesh size prescribed at embedded points; improved
display of vectors at COG; new experimental text string display engines; display of vectors at COG; new experimental text string display engines;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment