Skip to content
Snippets Groups Projects
Select Git revision
  • 3f73249a8770896b03a093b3fe10bb7cc62f42e0
  • 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

shapeFunctions.cpp

Blame
  • Forked from gmsh / gmsh
    Source project has a limited visibility.
    R_circuit.geo 902 B
    // Just 4 cubes
    
    Include "R_circuit_common.pro";
    
    lc = 0.25;      // Cjaracteristic length
    
    Point(1) = {0, 0, 0, lc};
    Extrude {1, 0, 0} {
      Point{1};
    }
    Extrude {0, 1, 0} {
      Line{1}; // Layers{10}; Recombine;
    }
    Extrude {0, 0, 1} {
      Surface{5}; // Layers{10}; Recombine;
    }
    Translate {2, 0, 0} {
      Duplicata { Volume{1}; }
    }
    Translate {0, 4, 0} {
      Duplicata { Volume{1}; }
    }
    Translate {2, 4, 0} {
      Duplicata { Volume{1}; }
    }
    
    Physical Surface(Cube1Top)              = {27};
    Physical Surface(Cube1Bottom)   = {5};
    Physical Surface(Cube2Top)              = {34};
    Physical Surface(Cube2Bottom)   = {29};
    Physical Surface(Cube3Top)              = {61};
    Physical Surface(Cube3Bottom)   = {56};
    Physical Surface(Cube4Top)              = {88};
    Physical Surface(Cube4Bottom)   = {83};
    
    Physical Volume(Cube1) = {1};
    Physical Volume(Cube2) = {28};
    Physical Volume(Cube3) = {55};
    Physical Volume(Cube4) = {82};