Skip to content
Snippets Groups Projects
Select Git revision
  • 3f7fc1405d95cbf279efe7f8d61eef0c82e66d93
  • master default
  • cgnsUnstructured
  • partitioning
  • poppler
  • HighOrderBLCurving
  • gmsh_3_0_4
  • gmsh_3_0_3
  • gmsh_3_0_2
  • gmsh_3_0_1
  • gmsh_3_0_0
  • gmsh_2_16_0
  • gmsh_2_15_0
  • gmsh_2_14_1
  • gmsh_2_14_0
  • gmsh_2_13_2
  • gmsh_2_13_1
  • gmsh_2_12_0
  • gmsh_2_11_0
  • gmsh_2_10_1
  • gmsh_2_10_0
  • gmsh_2_9_3
  • gmsh_2_9_2
  • gmsh_2_9_1
  • gmsh_2_9_0
  • gmsh_2_8_6
26 results

falcon_surface.script

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    falcon_surface.script 709 B
    Include "param.geo";
    
    Mesh.RemeshParametrization=7;
    Mesh.RemeshAlgorithm=1;
    Mesh.Algorithm=6;
    
    Mesh.CharacteristicLengthFromPoints = 0;
    Mesh.CharacteristicLengthMin = lc;
    Mesh.CharacteristicLengthMax = lc;
    Mesh.LcIntegrationPrecision = 1.e-5;
    Mesh.MinimumCirclePoints = 50;
    Mesh.CharacteristicLengthExtendFromBoundary = 0;
    
    Merge "InitialMeshFalcon.msh";
    
    CreateTopology;
    
    // Make all lines compound:
    ll[] = Line "*";
    For j In {0 : #ll[]-1}
      Compound Line(1000+j) = ll[j];
      Physical Line(1000+j) = (1000+j);
    EndFor
    
    // Make all surfaces compound and physical:
    ss[] = Surface "*";
    For i In {0 : #ss[]-1}
      Compound Surface(i+100) = ss[i];
      Physical Surface(i+1) = { i+100 };
    EndFor
    
    Mesh 2;
    Save "tmp.stl";