Skip to content
Snippets Groups Projects
Select Git revision
  • a838a6c8bb2dbae6aae55145d22715b94e50b1ae
  • master default protected
  • revert-ef4a3a4f
  • patch_releases_4_14
  • overlaps_tags_and_distributed_export
  • overlaps_tags_and_distributed_export_rebased
  • relaying
  • alphashapes
  • steplayer
  • bl
  • pluginMeshQuality
  • fixBugsAmaury
  • hierarchical-basis
  • new_export_boris
  • oras_vs_osm
  • reassign_partitions
  • distributed_fwi
  • rename-classes
  • fix/fortran-api-example-t4
  • robust_partitions
  • reducing_files
  • gmsh_4_14_0
  • gmsh_4_13_1
  • gmsh_4_13_0
  • gmsh_4_12_2
  • gmsh_4_12_1
  • gmsh_4_12_0
  • gmsh_4_11_1
  • gmsh_4_11_0
  • gmsh_4_10_5
  • gmsh_4_10_4
  • gmsh_4_10_3
  • gmsh_4_10_2
  • gmsh_4_10_1
  • gmsh_4_10_0
  • gmsh_4_9_5
  • gmsh_4_9_4
  • gmsh_4_9_3
  • gmsh_4_9_2
  • gmsh_4_9_1
  • gmsh_4_9_0
41 results

CGNSOptions.h

Blame
  • floating.geo 2.01 KiB
    /* -------------------------------------------------------------------
       File "floating.geo": copy of "microstrip.geo" from Tutorial 1
       ------------------------------------------------------------------- */
    
    /* Definition of some parameters for geometrical dimensions, i.e.  h (height of
       'Diel1'), w (width of 'Line'), t (thickness of 'Line') xBox (width of the air
       box) and yBox (height of the air box) */
    
    h = 1.e-3 ; w = 4.72e-3 ;  t = 0.035e-3 ;
    xBox = w/2. * 6. ;  yBox = h * 12. ;
    
    /* Definition of parameters for local mesh dimensions */
    
    s = 1. ;
    p0 = h / 10. * s ;
    pLine0 = w/2. / 10. * s ;  pLine1 = w/2. / 50. * s ;
    pxBox = xBox / 10. * s ;  pyBox = yBox / 8. * s ;
    
    /* Definition of gemetrical points */
    
    Point(1) = { 0   , 0, 0, p0} ;
    Point(2) = { xBox, 0, 0, pxBox} ;
    Point(3) = { xBox, h, 0, pxBox} ;
    Point(4) = { 0   , h, 0, pLine0} ;
    Point(5) = { w/2., h, 0, pLine1} ;
    Point(6) = { 0   , h+t, 0, pLine0} ;
    Point(7) = { w/2., h+t, 0, pLine1} ;
    Point(8) = { 0   , yBox, 0, pyBox} ;
    Point(9) = { xBox, yBox, 0, pyBox} ;
    
    /* Definition of gemetrical lines */
    
    Line(1) = {1,2};   Line(2) = {2,3};  Line(3) = {3,9};
    Line(4) = {9,8};   Line(5) = {8,6};  Line(7) = {4,1};
    Line(8) = {5,3};   Line(9) = {4,5};  Line(10) = {6,7};
    Line(11) = {5,7};
    
    /* Definition of geometrical surfaces */
    
    Line Loop(12) = {1, 2, -8, -9, 7};   Plane Surface(13) = {12};
    Line Loop(14) = {10,-11,8,3,4,5}; Plane Surface(15) = {14};
    
    /* Definition of Physical entities (surfaces, lines).  The definition of
       Physical entities (Surfaces and Lines) tells Gmsh the elements and associated
       region numbers that have to be saved in the mesh file 'microstrip.msh'.  For
       example, Region 111 is made of the triangle elements of the geometric surface
       13, whereas Region 121 is made of line elements of the geometric lines 9, 10
       and 11. */
    
    Physical Surface ("Air", 101) = {15};
    Physical Surface ("Dielectric", 111) = {13};
    
    Physical Line ("Ground", 120) = {1} ;
    Physical Line ("Electrode", 121) = {9,10,11} ;
    Physical Line ("Surface infinity", 130) = {2,3,4} ;