├── .gitignore ├── LICENSE.txt ├── README.md ├── docs ├── Makefile ├── locale │ ├── en │ │ └── LC_MESSAGES │ │ │ ├── autoapi │ │ │ ├── gmsh_scripts │ │ │ │ ├── __main__ │ │ │ │ │ └── index.po │ │ │ │ ├── block │ │ │ │ │ ├── block │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── index.po │ │ │ │ │ ├── layer │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── matrix │ │ │ │ │ │ └── index.po │ │ │ │ │ └── polyhedron │ │ │ │ │ │ └── index.po │ │ │ │ ├── boolean │ │ │ │ │ ├── boolean │ │ │ │ │ │ └── index.po │ │ │ │ │ └── index.po │ │ │ │ ├── coordinate_system │ │ │ │ │ ├── coordinate_system │ │ │ │ │ │ └── index.po │ │ │ │ │ └── index.po │ │ │ │ ├── entity │ │ │ │ │ ├── curve │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── curve_loop │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── index.po │ │ │ │ │ ├── point │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── surface │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── surface_loop │ │ │ │ │ │ └── index.po │ │ │ │ │ └── volume │ │ │ │ │ │ └── index.po │ │ │ │ ├── factory │ │ │ │ │ └── index.po │ │ │ │ ├── index.po │ │ │ │ ├── load │ │ │ │ │ └── index.po │ │ │ │ ├── optimize │ │ │ │ │ ├── index.po │ │ │ │ │ └── optimize │ │ │ │ │ │ └── index.po │ │ │ │ ├── parse │ │ │ │ │ ├── index.po │ │ │ │ │ └── parse │ │ │ │ │ │ └── index.po │ │ │ │ ├── plot │ │ │ │ │ └── index.po │ │ │ │ ├── quadrate │ │ │ │ │ ├── index.po │ │ │ │ │ └── quadrate │ │ │ │ │ │ └── index.po │ │ │ │ ├── refine │ │ │ │ │ ├── index.po │ │ │ │ │ └── refine │ │ │ │ │ │ └── index.po │ │ │ │ ├── registry │ │ │ │ │ └── index.po │ │ │ │ ├── run │ │ │ │ │ └── index.po │ │ │ │ ├── size │ │ │ │ │ ├── index.po │ │ │ │ │ └── size │ │ │ │ │ │ └── index.po │ │ │ │ ├── smooth │ │ │ │ │ ├── index.po │ │ │ │ │ └── smooth │ │ │ │ │ │ └── index.po │ │ │ │ ├── strategy │ │ │ │ │ ├── index.po │ │ │ │ │ └── strategy │ │ │ │ │ │ └── index.po │ │ │ │ ├── structure │ │ │ │ │ ├── index.po │ │ │ │ │ └── structure │ │ │ │ │ │ └── index.po │ │ │ │ ├── support │ │ │ │ │ ├── index.po │ │ │ │ │ └── support │ │ │ │ │ │ └── index.po │ │ │ │ ├── transform │ │ │ │ │ ├── index.po │ │ │ │ │ └── transform │ │ │ │ │ │ └── index.po │ │ │ │ ├── utils │ │ │ │ │ ├── index.po │ │ │ │ │ └── obj2gmsh │ │ │ │ │ │ └── index.po │ │ │ │ └── zone │ │ │ │ │ ├── index.po │ │ │ │ │ └── zone │ │ │ │ │ └── index.po │ │ │ └── index.po │ │ │ ├── index.po │ │ │ ├── tutorial_matrix.po │ │ │ ├── tutorial_section_1.po │ │ │ ├── tutorial_section_2.po │ │ │ ├── tutorial_simple_layer.po │ │ │ └── tutorials.po │ ├── fr │ │ └── LC_MESSAGES │ │ │ ├── autoapi │ │ │ ├── gmsh_scripts │ │ │ │ ├── __main__ │ │ │ │ │ └── index.po │ │ │ │ ├── block │ │ │ │ │ ├── block │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── index.po │ │ │ │ │ ├── layer │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── matrix │ │ │ │ │ │ └── index.po │ │ │ │ │ └── polyhedron │ │ │ │ │ │ └── index.po │ │ │ │ ├── boolean │ │ │ │ │ ├── boolean │ │ │ │ │ │ └── index.po │ │ │ │ │ └── index.po │ │ │ │ ├── coordinate_system │ │ │ │ │ ├── coordinate_system │ │ │ │ │ │ └── index.po │ │ │ │ │ └── index.po │ │ │ │ ├── entity │ │ │ │ │ ├── curve │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── curve_loop │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── index.po │ │ │ │ │ ├── point │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── surface │ │ │ │ │ │ └── index.po │ │ │ │ │ ├── surface_loop │ │ │ │ │ │ └── index.po │ │ │ │ │ └── volume │ │ │ │ │ │ └── index.po │ │ │ │ ├── factory │ │ │ │ │ └── index.po │ │ │ │ ├── index.mo │ │ │ │ ├── index.po │ │ │ │ ├── load │ │ │ │ │ └── index.po │ │ │ │ ├── optimize │ │ │ │ │ ├── index.po │ │ │ │ │ └── optimize │ │ │ │ │ │ └── index.po │ │ │ │ ├── parse │ │ │ │ │ ├── index.po │ │ │ │ │ └── parse │ │ │ │ │ │ └── index.po │ │ │ │ ├── plot │ │ │ │ │ └── index.po │ │ │ │ ├── quadrate │ │ │ │ │ ├── index.po │ │ │ │ │ └── quadrate │ │ │ │ │ │ └── index.po │ │ │ │ ├── refine │ │ │ │ │ ├── index.po │ │ │ │ │ └── refine │ │ │ │ │ │ └── index.po │ │ │ │ ├── registry │ │ │ │ │ └── index.po │ │ │ │ ├── run │ │ │ │ │ └── index.po │ │ │ │ ├── size │ │ │ │ │ ├── index.po │ │ │ │ │ └── size │ │ │ │ │ │ └── index.po │ │ │ │ ├── smooth │ │ │ │ │ ├── index.po │ │ │ │ │ └── smooth │ │ │ │ │ │ └── index.po │ │ │ │ ├── strategy │ │ │ │ │ ├── index.po │ │ │ │ │ └── strategy │ │ │ │ │ │ └── index.po │ │ │ │ ├── structure │ │ │ │ │ ├── index.po │ │ │ │ │ └── structure │ │ │ │ │ │ └── index.po │ │ │ │ ├── support │ │ │ │ │ ├── index.po │ │ │ │ │ └── support │ │ │ │ │ │ └── index.po │ │ │ │ ├── transform │ │ │ │ │ ├── index.po │ │ │ │ │ └── transform │ │ │ │ │ │ └── index.po │ │ │ │ ├── utils │ │ │ │ │ ├── index.po │ │ │ │ │ └── obj2gmsh │ │ │ │ │ │ └── index.po │ │ │ │ └── zone │ │ │ │ │ ├── index.po │ │ │ │ │ └── zone │ │ │ │ │ └── index.po │ │ │ └── index.po │ │ │ ├── index.po │ │ │ ├── tutorial_matrix.po │ │ │ ├── tutorial_section_1.po │ │ │ ├── tutorial_section_2.po │ │ │ ├── tutorial_simple_children.po │ │ │ ├── tutorial_simple_layer.po │ │ │ └── tutorials.po │ └── ru │ │ └── LC_MESSAGES │ │ ├── autoapi │ │ ├── gmsh_scripts │ │ │ ├── __main__ │ │ │ │ └── index.po │ │ │ ├── block │ │ │ │ ├── block │ │ │ │ │ └── index.po │ │ │ │ ├── index.po │ │ │ │ ├── layer │ │ │ │ │ └── index.po │ │ │ │ ├── matrix │ │ │ │ │ └── index.po │ │ │ │ └── polyhedron │ │ │ │ │ └── index.po │ │ │ ├── boolean │ │ │ │ ├── boolean │ │ │ │ │ └── index.po │ │ │ │ └── index.po │ │ │ ├── coordinate_system │ │ │ │ ├── coordinate_system │ │ │ │ │ └── index.po │ │ │ │ └── index.po │ │ │ ├── entity │ │ │ │ ├── curve │ │ │ │ │ └── index.po │ │ │ │ ├── curve_loop │ │ │ │ │ └── index.po │ │ │ │ ├── index.po │ │ │ │ ├── point │ │ │ │ │ └── index.po │ │ │ │ ├── surface │ │ │ │ │ └── index.po │ │ │ │ ├── surface_loop │ │ │ │ │ └── index.po │ │ │ │ └── volume │ │ │ │ │ └── index.po │ │ │ ├── factory │ │ │ │ └── index.po │ │ │ ├── index.po │ │ │ ├── load │ │ │ │ └── index.po │ │ │ ├── optimize │ │ │ │ ├── index.po │ │ │ │ └── optimize │ │ │ │ │ └── index.po │ │ │ ├── parse │ │ │ │ ├── index.po │ │ │ │ └── parse │ │ │ │ │ └── index.po │ │ │ ├── plot │ │ │ │ └── index.po │ │ │ ├── quadrate │ │ │ │ ├── index.po │ │ │ │ └── quadrate │ │ │ │ │ └── index.po │ │ │ ├── refine │ │ │ │ ├── index.po │ │ │ │ └── refine │ │ │ │ │ └── index.po │ │ │ ├── registry │ │ │ │ └── index.po │ │ │ ├── run │ │ │ │ └── index.po │ │ │ ├── size │ │ │ │ ├── index.po │ │ │ │ └── size │ │ │ │ │ └── index.po │ │ │ ├── smooth │ │ │ │ ├── index.po │ │ │ │ └── smooth │ │ │ │ │ └── index.po │ │ │ ├── strategy │ │ │ │ ├── index.po │ │ │ │ └── strategy │ │ │ │ │ └── index.po │ │ │ ├── structure │ │ │ │ ├── index.po │ │ │ │ └── structure │ │ │ │ │ └── index.po │ │ │ ├── support │ │ │ │ ├── index.po │ │ │ │ └── support │ │ │ │ │ └── index.po │ │ │ ├── transform │ │ │ │ ├── index.po │ │ │ │ └── transform │ │ │ │ │ └── index.po │ │ │ ├── utils │ │ │ │ ├── index.po │ │ │ │ └── obj2gmsh │ │ │ │ │ └── index.po │ │ │ └── zone │ │ │ │ ├── index.po │ │ │ │ └── zone │ │ │ │ └── index.po │ │ └── index.po │ │ ├── index.po │ │ ├── tutorial_matrix.po │ │ ├── tutorial_section_1.po │ │ ├── tutorial_section_2.po │ │ ├── tutorial_simple_children.po │ │ ├── tutorial_simple_layer.po │ │ └── tutorials.po ├── make.bat ├── requirements.txt └── source │ ├── conf.py │ ├── index.rst │ ├── tutorial_matrix.rst │ ├── tutorial_section_1.rst │ ├── tutorial_section_2.rst │ ├── tutorial_simple_children.rst │ ├── tutorial_simple_layer.rst │ └── tutorials.rst ├── examples ├── block │ └── custom_block.yaml ├── cim │ ├── json │ │ ├── ebs_1.json │ │ ├── ebs_2.json │ │ ├── env_1.json │ │ ├── env_2.json │ │ ├── main.json │ │ ├── rw_1.json │ │ └── rw_2.json │ └── yaml │ │ ├── ebs_1.yml │ │ ├── ebs_2.yml │ │ ├── env_1.yml │ │ ├── env_2.yml │ │ ├── main.yml │ │ ├── rw_1.yml │ │ └── rw_2.yml ├── cylinder │ ├── core.yaml │ ├── full.json │ ├── halfvoid.json │ ├── quarterpipe.json │ ├── simple.json │ └── void.json ├── experiment │ └── sweden │ │ ├── all.json │ │ ├── all_heater.json │ │ ├── all_heater_plug.json │ │ ├── borehole.json │ │ ├── borehole_plug.json │ │ ├── borehole_rw_ebs.json │ │ ├── ebs_rw.json │ │ ├── heater.json │ │ ├── heater_plug.json │ │ ├── not_all.json │ │ ├── plug.json │ │ ├── rock.json │ │ └── tunnel.json ├── gr1_simple_2 │ ├── bent.yaml │ ├── bent_box_low.yaml │ ├── bent_box_up.yaml │ ├── build_result.py │ ├── edz.yaml │ ├── env.yaml │ ├── simple_RW.yaml │ ├── simple_RW_main.yaml │ └── simple_RW_stack.yaml ├── gr1_simple_3 │ ├── bent_box_low.yaml │ ├── bent_box_up_1.yaml │ ├── bent_box_up_2.yaml │ ├── bent_side.yaml │ ├── build_result.py │ ├── edz.yaml │ ├── env.yaml │ └── simple_RW_main.yaml ├── half_layer │ └── simple.yaml ├── half_layer_with_holes │ └── main.yaml ├── hdm │ ├── cell.json │ ├── cell_containers.json │ ├── container.json │ └── containers.json ├── matrix │ ├── cross_section_1 │ │ ├── bottom_1.yaml │ │ ├── bottom_2.yaml │ │ ├── bottom_3.yaml │ │ ├── main.yaml │ │ ├── middle.yaml │ │ ├── top_1.yaml │ │ ├── top_2.yaml │ │ └── top_3.yaml │ ├── cross_section_2 │ │ ├── bottom.yaml │ │ ├── main.yaml │ │ ├── top_1.yaml │ │ ├── top_2.yaml │ │ └── top_3.yaml │ ├── large_matrix.yaml │ └── matrix.json ├── quarter_layer │ └── simple.yaml ├── quarter_layer_with_holes │ └── main.yaml ├── rao_container │ ├── cylinder.yml │ ├── pallet.yml │ ├── rao_json │ │ ├── RAO.json │ │ ├── cast_iron.json │ │ ├── container.json │ │ ├── matrix_slice1.json │ │ ├── matrix_slice2.json │ │ ├── pallet.json │ │ ├── rock.json │ │ └── tranch.json │ ├── simple_block.yml │ ├── smaller_cylinder.yml │ ├── storage_result.yml │ └── test_tranch.yml ├── rod │ ├── rod.json │ └── rod_gas.json ├── tenex │ ├── borehole │ │ ├── borehole.json │ │ ├── boreholes.json │ │ ├── cast_iron.json │ │ ├── container.json │ │ └── filling.json │ ├── chamber │ │ ├── cast_iron.json │ │ ├── chamber.json │ │ ├── chambers.json │ │ ├── container.json │ │ ├── filling.json │ │ └── rock.json │ ├── container_complex │ │ ├── canister.json │ │ ├── cast_iron.json │ │ ├── container.json │ │ ├── container_layers.json │ │ ├── filling.json │ │ ├── inner_circle.json │ │ ├── layer.json │ │ ├── layers.json │ │ ├── outer_circle.json │ │ ├── rw.json │ │ └── steel.json │ ├── container_simple │ │ ├── cast_iron.json │ │ ├── container.json │ │ └── filling.json │ └── tunnel │ │ ├── cast_iron.json │ │ ├── container.json │ │ ├── filling.json │ │ ├── hill.yaml │ │ ├── main.yaml │ │ ├── rock.yaml │ │ └── tunnel.json ├── torus │ ├── simple.yaml │ ├── simple_stellarator.yaml │ ├── simple_tokamak.yaml │ ├── simple_toroidal.yaml │ ├── simple_zones.yaml │ └── simple_zones_void.yaml ├── tranch_slice │ ├── Plug_tranch.yaml │ ├── R+bent+edz_tranch.json │ ├── R+bent_sides.json │ ├── R+edz.yaml │ ├── RW+concrete+bent.json │ ├── RW_concrete_bent.yaml │ ├── R_P_T.yaml │ ├── R_bent_sides.yaml │ ├── R_edz.yaml │ ├── R_edz_left.yaml │ ├── R_edz_right.yaml │ ├── R_edz_tranch.yaml │ ├── T+R.yaml │ ├── T+R_test.json │ ├── T+p+edz_tranch.json │ ├── T_edz.yaml │ ├── T_edz_left.yaml │ ├── T_edz_right.yaml │ ├── T_edz_tranch.yaml │ ├── T_p_edz.yaml │ ├── T_plug.yaml │ ├── Tunnel+plug.json │ ├── result.yaml │ ├── test_layers.json │ ├── tranch.json │ ├── tranch_slice.json │ └── tranch_slice2.json ├── tranch_slice_asymmetric │ ├── Plug_tranch.yaml │ ├── RW_concrete_bent_layers.yaml │ ├── R_P_T.yaml │ ├── R_bent_sides.yaml │ ├── R_edz.yaml │ ├── R_edz_left.yaml │ ├── R_edz_right.yaml │ ├── R_edz_tranch.yaml │ ├── T_edz.yaml │ ├── T_edz_basic.yaml │ ├── T_edz_left.yaml │ ├── T_edz_right.yaml │ ├── T_edz_tranch.yaml │ ├── build_tranch.py │ ├── result.yaml │ ├── test_children.yaml │ └── test_children2.yaml ├── tranch_slice_asymmetric_X_bentonite │ ├── Plug_tranch.yaml │ ├── RW_concrete_bent_layers.yaml │ ├── R_P_T.yaml │ ├── R_bent_sides.yaml │ ├── R_edz.yaml │ ├── R_edz_left.yaml │ ├── R_edz_right.yaml │ ├── R_edz_tranch.yaml │ ├── T_edz.yaml │ ├── T_edz_basic.yaml │ ├── T_edz_left.yaml │ ├── T_edz_right.yaml │ ├── T_edz_tranch.yaml │ ├── build_tranch.py │ └── result.yaml ├── tranch_slice_new │ ├── Plug_tranch.yaml │ ├── RW_concrete_bent.yaml │ ├── RW_concrete_bent_layers.yaml │ ├── R_P_T.yaml │ ├── R_bent_sides.yaml │ ├── R_edz.yaml │ ├── R_edz_left.yaml │ ├── R_edz_right.yaml │ ├── R_edz_tranch.yaml │ ├── T_edz.yaml │ ├── T_edz_basic.yaml │ ├── T_edz_left.yaml │ ├── T_edz_right.yaml │ ├── T_edz_tranch.yaml │ ├── build_tranch.py │ ├── result.yaml │ ├── test_children.yaml │ └── test_children2.yaml ├── tuk │ └── test_TUK_rock.json ├── tutorials │ ├── simple_children │ │ ├── child_1.yaml │ │ ├── child_2.yaml │ │ ├── parent.yaml │ │ ├── parent_all.yaml │ │ └── parent_items.yaml │ └── simple_layer │ │ ├── curved_layer.yaml │ │ ├── filtered_matrix.yaml │ │ ├── layer.yaml │ │ ├── matrix.yaml │ │ ├── multi_height_layer.yaml │ │ ├── multi_height_layer_zones.yaml │ │ ├── multi_layer.yaml │ │ └── nodes_layer.yaml ├── well_3_RAO │ ├── RW_in_bent.yaml │ ├── single_well.yaml │ └── tranch.yaml └── well_boundary │ ├── main_well.json │ └── wells_parent.json ├── images ├── core.png ├── cross_section_1.png ├── cross_section_1_draft.png ├── cross_section_2.png ├── cross_section_2_decomposition.png ├── cross_section_2_draft.png ├── cross_section_2_geometry_bottom.png ├── cross_section_2_geometry_main.png ├── cross_section_2_mesh_main_default.png ├── cross_section_2_mesh_structured_hexahedral_bottom_1.png ├── cross_section_2_mesh_structured_hexahedral_bottom_bump_1.png ├── cross_section_2_mesh_structured_hexahedral_bottom_bump_2.png ├── cross_section_2_mesh_structured_hexahedral_bottom_progression_1.png ├── cross_section_2_mesh_structured_hexahedral_bottom_progression_2.png ├── cross_section_2_mesh_structured_hexahedral_bottom_zones.png ├── cross_section_2_mesh_structured_hexahedral_main.png ├── cross_section_2_mesh_structured_tetrahedral_bottom_1.png ├── cross_section_2_mesh_structured_tetrahedral_bottom_2.png ├── cross_section_2_mesh_structured_tetrahedral_main_1.png ├── cross_section_2_mesh_structured_tetrahedral_main_2.png ├── cross_section_2_mesh_unstructured_hexahedral_bottom_1.png ├── cross_section_2_mesh_unstructured_hexahedral_main.png ├── cross_section_2_mesh_unstructured_tetrahedral_bottom_1.png ├── cross_section_2_mesh_unstructured_tetrahedral_bottom_2.png ├── cross_section_2_mesh_unstructured_tetrahedral_bottom_global_1.png ├── cross_section_2_mesh_unstructured_tetrahedral_bottom_global_2.png ├── cross_section_2_mesh_unstructured_tetrahedral_bottom_global_3.png ├── cross_section_2_mesh_unstructured_tetrahedral_main.png ├── cross_section_2_mesh_unstructured_tetrahedral_main_global.png ├── custom_block.png ├── half_layer_with_holes.png ├── large_matrix.png ├── matrix.png ├── quarter_layer_with_holes.png ├── readme.jpg ├── simple_cylinder.png ├── simple_half_layer.png ├── simple_quarter_layer.png ├── simple_stellarator.png ├── simple_tokamak.png ├── simple_torus.png ├── sweden_experiment.png ├── sweden_experiment_tree.png ├── test_cylinder_simple.png ├── test_cylinder_simple_t.png ├── test_cylinder_simple_tr.png ├── tutorial_simple_children_child_1.png ├── tutorial_simple_children_child_2.png ├── tutorial_simple_children_parent.png ├── tutorial_simple_children_parent_2.png ├── tutorial_simple_children_parent_3.png ├── tutorial_simple_children_parent_all.png ├── tutorial_simple_children_parent_all_2.png ├── tutorial_simple_children_parent_all_3.png ├── tutorial_simple_children_parent_items.png ├── tutorial_simple_children_parent_items_2.png ├── tutorial_simple_children_parent_items_3.png ├── tutorial_simple_children_parent_items_4.png ├── tutorial_simple_layer_1.png ├── tutorial_simple_layer_2.png ├── tutorial_simple_layer_3.png ├── tutorial_simple_layer_4.png ├── tutorial_simple_layer_5.png ├── tutorial_simple_layer_6.png ├── tutorial_simple_layer_7.png ├── tutorial_simple_layer_8.png ├── tutorial_simple_layer_9.png └── wells_parent.png ├── pyproject.toml ├── requirements ├── common.txt ├── dev.txt └── prod.txt ├── src └── gmsh_scripts │ ├── __init__.py │ ├── __main__.py │ ├── block │ ├── __init__.py │ ├── block.py │ ├── half_layer.py │ ├── layer.py │ ├── matrix.py │ ├── polyhedron.py │ └── quarter_layer.py │ ├── boolean │ ├── __init__.py │ └── boolean.py │ ├── coordinate_system │ ├── __init__.py │ └── coordinate_system.py │ ├── entity │ ├── __init__.py │ ├── curve.py │ ├── curve_loop.py │ ├── point.py │ ├── surface.py │ ├── surface_loop.py │ └── volume.py │ ├── factory.py │ ├── load.py │ ├── optimize │ ├── __init__.py │ └── optimize.py │ ├── parse │ ├── __init__.py │ └── parse.py │ ├── plot.py │ ├── quadrate │ ├── __init__.py │ └── quadrate.py │ ├── refine │ ├── __init__.py │ └── refine.py │ ├── registry.py │ ├── run.py │ ├── size │ ├── __init__.py │ └── size.py │ ├── smooth │ ├── __init__.py │ └── smooth.py │ ├── strategy │ ├── __init__.py │ └── strategy.py │ ├── structure │ ├── __init__.py │ └── structure.py │ ├── support │ ├── __init__.py │ └── support.py │ ├── transform │ ├── __init__.py │ └── transform.py │ ├── utils │ ├── __init__.py │ └── obj2gmsh.py │ └── zone │ ├── __init__.py │ └── zone.py └── tests ├── __init__.py ├── block ├── __init__.py └── polyhedron │ ├── __init__.py │ ├── cube.json │ ├── dodecahedron.json │ ├── elbow.json │ ├── icosahedron.json │ ├── multi.json │ ├── octahedron.json │ ├── pyramid.json │ ├── test_polyhedron.py │ └── tetrahedron.json ├── conftest.py ├── examples ├── __init__.py ├── rise │ ├── __init__.py │ ├── cube.yml │ ├── cylinder.yml │ ├── random_cube.py │ ├── random_cube.yml │ └── test_rise.py └── test_examples.py ├── json_test ├── __init__.py ├── cast_iron.json ├── container.json ├── filling.json └── test_json.py ├── transform ├── __init__.py └── transformation_matrix │ ├── __init__.py │ ├── cube.json │ └── test_transformation_matrix.py └── yaml_test ├── __init__.py ├── cast_iron.yml ├── container.yml ├── filling.yml └── test_yaml.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/__main__/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/__main__/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/block/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/block/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/layer/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/layer/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/matrix/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/matrix/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/polyhedron/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/block/polyhedron/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/boolean/boolean/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/boolean/boolean/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/boolean/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/boolean/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/coordinate_system/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/coordinate_system/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve_loop/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve_loop/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/point/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/point/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface_loop/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface_loop/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/volume/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/entity/volume/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/factory/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/factory/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/load/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/load/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/optimize/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/optimize/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/optimize/optimize/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/optimize/optimize/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/parse/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/parse/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/parse/parse/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/parse/parse/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/plot/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/plot/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/quadrate/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/quadrate/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/refine/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/refine/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/refine/refine/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/refine/refine/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/registry/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/registry/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/run/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/run/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/size/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/size/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/size/size/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/size/size/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/smooth/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/smooth/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/smooth/smooth/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/smooth/smooth/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/strategy/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/strategy/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/strategy/strategy/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/strategy/strategy/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/structure/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/structure/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/structure/structure/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/structure/structure/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/support/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/support/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/support/support/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/support/support/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/transform/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/transform/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/transform/transform/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/transform/transform/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/utils/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/utils/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/utils/obj2gmsh/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/utils/obj2gmsh/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/zone/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/zone/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/zone/zone/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/gmsh_scripts/zone/zone/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/autoapi/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/autoapi/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/tutorial_matrix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/tutorial_matrix.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/tutorial_section_1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/tutorial_section_1.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/tutorial_section_2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/tutorial_section_2.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/tutorial_simple_layer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/tutorial_simple_layer.po -------------------------------------------------------------------------------- /docs/locale/en/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/en/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/__main__/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/__main__/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/block/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/block/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/layer/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/layer/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/matrix/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/matrix/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/polyhedron/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/block/polyhedron/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/boolean/boolean/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/boolean/boolean/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/boolean/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/boolean/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/coordinate_system/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/coordinate_system/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve_loop/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve_loop/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/point/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/point/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface_loop/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface_loop/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/volume/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/entity/volume/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/factory/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/factory/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/index.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/index.mo -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/load/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/load/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/optimize/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/optimize/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/optimize/optimize/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/optimize/optimize/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/parse/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/parse/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/parse/parse/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/parse/parse/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/plot/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/plot/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/quadrate/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/quadrate/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/refine/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/refine/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/refine/refine/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/refine/refine/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/registry/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/registry/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/run/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/run/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/size/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/size/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/size/size/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/size/size/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/smooth/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/smooth/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/smooth/smooth/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/smooth/smooth/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/strategy/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/strategy/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/strategy/strategy/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/strategy/strategy/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/structure/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/structure/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/structure/structure/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/structure/structure/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/support/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/support/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/support/support/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/support/support/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/transform/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/transform/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/transform/transform/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/transform/transform/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/utils/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/utils/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/utils/obj2gmsh/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/utils/obj2gmsh/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/zone/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/zone/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/zone/zone/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/gmsh_scripts/zone/zone/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/autoapi/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/autoapi/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/tutorial_matrix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/tutorial_matrix.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/tutorial_section_1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/tutorial_section_1.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/tutorial_section_2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/tutorial_section_2.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/tutorial_simple_children.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/tutorial_simple_children.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/tutorial_simple_layer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/tutorial_simple_layer.po -------------------------------------------------------------------------------- /docs/locale/fr/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/fr/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/__main__/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/__main__/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/block/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/block/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/layer/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/layer/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/matrix/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/matrix/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/polyhedron/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/block/polyhedron/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/boolean/boolean/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/boolean/boolean/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/boolean/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/boolean/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/coordinate_system/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/coordinate_system/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/coordinate_system/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve_loop/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/curve_loop/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/point/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/point/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface_loop/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/surface_loop/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/volume/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/entity/volume/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/factory/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/factory/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/load/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/load/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/optimize/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/optimize/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/optimize/optimize/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/optimize/optimize/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/parse/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/parse/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/parse/parse/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/parse/parse/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/plot/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/plot/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/quadrate/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/quadrate/quadrate/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/refine/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/refine/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/refine/refine/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/refine/refine/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/registry/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/registry/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/run/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/run/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/size/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/size/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/size/size/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/size/size/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/smooth/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/smooth/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/smooth/smooth/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/smooth/smooth/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/strategy/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/strategy/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/strategy/strategy/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/strategy/strategy/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/structure/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/structure/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/structure/structure/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/structure/structure/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/support/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/support/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/support/support/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/support/support/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/transform/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/transform/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/transform/transform/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/transform/transform/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/utils/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/utils/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/utils/obj2gmsh/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/utils/obj2gmsh/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/zone/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/zone/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/zone/zone/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/gmsh_scripts/zone/zone/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/autoapi/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/autoapi/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/index.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/index.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/tutorial_matrix.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/tutorial_matrix.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/tutorial_section_1.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/tutorial_section_1.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/tutorial_section_2.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/tutorial_section_2.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/tutorial_simple_children.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/tutorial_simple_children.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/tutorial_simple_layer.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/tutorial_simple_layer.po -------------------------------------------------------------------------------- /docs/locale/ru/LC_MESSAGES/tutorials.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/locale/ru/LC_MESSAGES/tutorials.po -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/tutorial_matrix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/source/tutorial_matrix.rst -------------------------------------------------------------------------------- /docs/source/tutorial_section_1.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/source/tutorial_section_1.rst -------------------------------------------------------------------------------- /docs/source/tutorial_section_2.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/source/tutorial_section_2.rst -------------------------------------------------------------------------------- /docs/source/tutorial_simple_children.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/source/tutorial_simple_children.rst -------------------------------------------------------------------------------- /docs/source/tutorial_simple_layer.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/source/tutorial_simple_layer.rst -------------------------------------------------------------------------------- /docs/source/tutorials.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/docs/source/tutorials.rst -------------------------------------------------------------------------------- /examples/block/custom_block.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/block/custom_block.yaml -------------------------------------------------------------------------------- /examples/cim/json/ebs_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/json/ebs_1.json -------------------------------------------------------------------------------- /examples/cim/json/ebs_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/json/ebs_2.json -------------------------------------------------------------------------------- /examples/cim/json/env_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/json/env_1.json -------------------------------------------------------------------------------- /examples/cim/json/env_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/json/env_2.json -------------------------------------------------------------------------------- /examples/cim/json/main.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/json/main.json -------------------------------------------------------------------------------- /examples/cim/json/rw_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/json/rw_1.json -------------------------------------------------------------------------------- /examples/cim/json/rw_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/json/rw_2.json -------------------------------------------------------------------------------- /examples/cim/yaml/ebs_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/yaml/ebs_1.yml -------------------------------------------------------------------------------- /examples/cim/yaml/ebs_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/yaml/ebs_2.yml -------------------------------------------------------------------------------- /examples/cim/yaml/env_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/yaml/env_1.yml -------------------------------------------------------------------------------- /examples/cim/yaml/env_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/yaml/env_2.yml -------------------------------------------------------------------------------- /examples/cim/yaml/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/yaml/main.yml -------------------------------------------------------------------------------- /examples/cim/yaml/rw_1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/yaml/rw_1.yml -------------------------------------------------------------------------------- /examples/cim/yaml/rw_2.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cim/yaml/rw_2.yml -------------------------------------------------------------------------------- /examples/cylinder/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cylinder/core.yaml -------------------------------------------------------------------------------- /examples/cylinder/full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cylinder/full.json -------------------------------------------------------------------------------- /examples/cylinder/halfvoid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cylinder/halfvoid.json -------------------------------------------------------------------------------- /examples/cylinder/quarterpipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cylinder/quarterpipe.json -------------------------------------------------------------------------------- /examples/cylinder/simple.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cylinder/simple.json -------------------------------------------------------------------------------- /examples/cylinder/void.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/cylinder/void.json -------------------------------------------------------------------------------- /examples/experiment/sweden/all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/all.json -------------------------------------------------------------------------------- /examples/experiment/sweden/all_heater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/all_heater.json -------------------------------------------------------------------------------- /examples/experiment/sweden/all_heater_plug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/all_heater_plug.json -------------------------------------------------------------------------------- /examples/experiment/sweden/borehole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/borehole.json -------------------------------------------------------------------------------- /examples/experiment/sweden/borehole_plug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/borehole_plug.json -------------------------------------------------------------------------------- /examples/experiment/sweden/borehole_rw_ebs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/borehole_rw_ebs.json -------------------------------------------------------------------------------- /examples/experiment/sweden/ebs_rw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/ebs_rw.json -------------------------------------------------------------------------------- /examples/experiment/sweden/heater.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/heater.json -------------------------------------------------------------------------------- /examples/experiment/sweden/heater_plug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/heater_plug.json -------------------------------------------------------------------------------- /examples/experiment/sweden/not_all.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/not_all.json -------------------------------------------------------------------------------- /examples/experiment/sweden/plug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/plug.json -------------------------------------------------------------------------------- /examples/experiment/sweden/rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/rock.json -------------------------------------------------------------------------------- /examples/experiment/sweden/tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/experiment/sweden/tunnel.json -------------------------------------------------------------------------------- /examples/gr1_simple_2/bent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/bent.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_2/bent_box_low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/bent_box_low.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_2/bent_box_up.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/bent_box_up.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_2/build_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/build_result.py -------------------------------------------------------------------------------- /examples/gr1_simple_2/edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/edz.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_2/env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/env.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_2/simple_RW.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/simple_RW.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_2/simple_RW_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/simple_RW_main.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_2/simple_RW_stack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_2/simple_RW_stack.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_3/bent_box_low.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_3/bent_box_low.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_3/bent_box_up_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_3/bent_box_up_1.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_3/bent_box_up_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_3/bent_box_up_2.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_3/bent_side.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_3/bent_side.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_3/build_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_3/build_result.py -------------------------------------------------------------------------------- /examples/gr1_simple_3/edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_3/edz.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_3/env.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_3/env.yaml -------------------------------------------------------------------------------- /examples/gr1_simple_3/simple_RW_main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/gr1_simple_3/simple_RW_main.yaml -------------------------------------------------------------------------------- /examples/half_layer/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/half_layer/simple.yaml -------------------------------------------------------------------------------- /examples/half_layer_with_holes/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/half_layer_with_holes/main.yaml -------------------------------------------------------------------------------- /examples/hdm/cell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/hdm/cell.json -------------------------------------------------------------------------------- /examples/hdm/cell_containers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/hdm/cell_containers.json -------------------------------------------------------------------------------- /examples/hdm/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/hdm/container.json -------------------------------------------------------------------------------- /examples/hdm/containers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/hdm/containers.json -------------------------------------------------------------------------------- /examples/matrix/cross_section_1/bottom_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_1/bottom_1.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_1/bottom_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_1/bottom_2.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_1/bottom_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_1/bottom_3.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_1/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_1/main.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_1/middle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_1/middle.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_1/top_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_1/top_1.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_1/top_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_1/top_2.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_1/top_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_1/top_3.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_2/bottom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_2/bottom.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_2/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_2/main.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_2/top_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_2/top_1.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_2/top_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_2/top_2.yaml -------------------------------------------------------------------------------- /examples/matrix/cross_section_2/top_3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/cross_section_2/top_3.yaml -------------------------------------------------------------------------------- /examples/matrix/large_matrix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/large_matrix.yaml -------------------------------------------------------------------------------- /examples/matrix/matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/matrix/matrix.json -------------------------------------------------------------------------------- /examples/quarter_layer/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/quarter_layer/simple.yaml -------------------------------------------------------------------------------- /examples/quarter_layer_with_holes/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/quarter_layer_with_holes/main.yaml -------------------------------------------------------------------------------- /examples/rao_container/cylinder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/cylinder.yml -------------------------------------------------------------------------------- /examples/rao_container/pallet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/pallet.yml -------------------------------------------------------------------------------- /examples/rao_container/rao_json/RAO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/rao_json/RAO.json -------------------------------------------------------------------------------- /examples/rao_container/rao_json/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/rao_json/cast_iron.json -------------------------------------------------------------------------------- /examples/rao_container/rao_json/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/rao_json/container.json -------------------------------------------------------------------------------- /examples/rao_container/rao_json/matrix_slice1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/rao_json/matrix_slice1.json -------------------------------------------------------------------------------- /examples/rao_container/rao_json/matrix_slice2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/rao_json/matrix_slice2.json -------------------------------------------------------------------------------- /examples/rao_container/rao_json/pallet.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/rao_json/pallet.json -------------------------------------------------------------------------------- /examples/rao_container/rao_json/rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/rao_json/rock.json -------------------------------------------------------------------------------- /examples/rao_container/rao_json/tranch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/rao_json/tranch.json -------------------------------------------------------------------------------- /examples/rao_container/simple_block.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/simple_block.yml -------------------------------------------------------------------------------- /examples/rao_container/smaller_cylinder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/smaller_cylinder.yml -------------------------------------------------------------------------------- /examples/rao_container/storage_result.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/storage_result.yml -------------------------------------------------------------------------------- /examples/rao_container/test_tranch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rao_container/test_tranch.yml -------------------------------------------------------------------------------- /examples/rod/rod.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rod/rod.json -------------------------------------------------------------------------------- /examples/rod/rod_gas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/rod/rod_gas.json -------------------------------------------------------------------------------- /examples/tenex/borehole/borehole.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/borehole/borehole.json -------------------------------------------------------------------------------- /examples/tenex/borehole/boreholes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/borehole/boreholes.json -------------------------------------------------------------------------------- /examples/tenex/borehole/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/borehole/cast_iron.json -------------------------------------------------------------------------------- /examples/tenex/borehole/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/borehole/container.json -------------------------------------------------------------------------------- /examples/tenex/borehole/filling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/borehole/filling.json -------------------------------------------------------------------------------- /examples/tenex/chamber/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/chamber/cast_iron.json -------------------------------------------------------------------------------- /examples/tenex/chamber/chamber.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/chamber/chamber.json -------------------------------------------------------------------------------- /examples/tenex/chamber/chambers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/chamber/chambers.json -------------------------------------------------------------------------------- /examples/tenex/chamber/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/chamber/container.json -------------------------------------------------------------------------------- /examples/tenex/chamber/filling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/chamber/filling.json -------------------------------------------------------------------------------- /examples/tenex/chamber/rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/chamber/rock.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/canister.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/canister.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/cast_iron.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/container.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/container_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/container_layers.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/filling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/filling.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/inner_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/inner_circle.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/layer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/layer.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/layers.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/outer_circle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/outer_circle.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/rw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/rw.json -------------------------------------------------------------------------------- /examples/tenex/container_complex/steel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_complex/steel.json -------------------------------------------------------------------------------- /examples/tenex/container_simple/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_simple/cast_iron.json -------------------------------------------------------------------------------- /examples/tenex/container_simple/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_simple/container.json -------------------------------------------------------------------------------- /examples/tenex/container_simple/filling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/container_simple/filling.json -------------------------------------------------------------------------------- /examples/tenex/tunnel/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/tunnel/cast_iron.json -------------------------------------------------------------------------------- /examples/tenex/tunnel/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/tunnel/container.json -------------------------------------------------------------------------------- /examples/tenex/tunnel/filling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/tunnel/filling.json -------------------------------------------------------------------------------- /examples/tenex/tunnel/hill.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/tunnel/hill.yaml -------------------------------------------------------------------------------- /examples/tenex/tunnel/main.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/tunnel/main.yaml -------------------------------------------------------------------------------- /examples/tenex/tunnel/rock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/tunnel/rock.yaml -------------------------------------------------------------------------------- /examples/tenex/tunnel/tunnel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tenex/tunnel/tunnel.json -------------------------------------------------------------------------------- /examples/torus/simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/torus/simple.yaml -------------------------------------------------------------------------------- /examples/torus/simple_stellarator.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/torus/simple_stellarator.yaml -------------------------------------------------------------------------------- /examples/torus/simple_tokamak.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/torus/simple_tokamak.yaml -------------------------------------------------------------------------------- /examples/torus/simple_toroidal.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/torus/simple_toroidal.yaml -------------------------------------------------------------------------------- /examples/torus/simple_zones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/torus/simple_zones.yaml -------------------------------------------------------------------------------- /examples/torus/simple_zones_void.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/torus/simple_zones_void.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/Plug_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/Plug_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/R+bent+edz_tranch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R+bent+edz_tranch.json -------------------------------------------------------------------------------- /examples/tranch_slice/R+bent_sides.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R+bent_sides.json -------------------------------------------------------------------------------- /examples/tranch_slice/R+edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R+edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/RW+concrete+bent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/RW+concrete+bent.json -------------------------------------------------------------------------------- /examples/tranch_slice/RW_concrete_bent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/RW_concrete_bent.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/R_P_T.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R_P_T.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/R_bent_sides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R_bent_sides.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/R_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/R_edz_left.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R_edz_left.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/R_edz_right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R_edz_right.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/R_edz_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/R_edz_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/T+R.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T+R.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/T+R_test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T+R_test.json -------------------------------------------------------------------------------- /examples/tranch_slice/T+p+edz_tranch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T+p+edz_tranch.json -------------------------------------------------------------------------------- /examples/tranch_slice/T_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/T_edz_left.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T_edz_left.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/T_edz_right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T_edz_right.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/T_edz_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T_edz_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/T_p_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T_p_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/T_plug.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/T_plug.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/Tunnel+plug.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/Tunnel+plug.json -------------------------------------------------------------------------------- /examples/tranch_slice/result.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/result.yaml -------------------------------------------------------------------------------- /examples/tranch_slice/test_layers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/test_layers.json -------------------------------------------------------------------------------- /examples/tranch_slice/tranch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/tranch.json -------------------------------------------------------------------------------- /examples/tranch_slice/tranch_slice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/tranch_slice.json -------------------------------------------------------------------------------- /examples/tranch_slice/tranch_slice2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice/tranch_slice2.json -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/Plug_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/Plug_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/RW_concrete_bent_layers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/RW_concrete_bent_layers.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/R_P_T.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/R_P_T.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/R_bent_sides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/R_bent_sides.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/R_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/R_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/R_edz_left.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/R_edz_left.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/R_edz_right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/R_edz_right.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/R_edz_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/R_edz_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/T_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/T_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/T_edz_basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/T_edz_basic.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/T_edz_left.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/T_edz_left.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/T_edz_right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/T_edz_right.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/T_edz_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/T_edz_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/build_tranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/build_tranch.py -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/result.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/result.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/test_children.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/test_children.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric/test_children2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric/test_children2.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/Plug_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/Plug_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/RW_concrete_bent_layers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/RW_concrete_bent_layers.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/R_P_T.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/R_P_T.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/R_bent_sides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/R_bent_sides.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/R_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/R_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/R_edz_left.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/R_edz_left.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/R_edz_right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/R_edz_right.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/R_edz_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/R_edz_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/T_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/T_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/T_edz_basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/T_edz_basic.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/T_edz_left.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/T_edz_left.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/T_edz_right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/T_edz_right.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/T_edz_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/T_edz_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/build_tranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/build_tranch.py -------------------------------------------------------------------------------- /examples/tranch_slice_asymmetric_X_bentonite/result.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_asymmetric_X_bentonite/result.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/Plug_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/Plug_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/RW_concrete_bent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/RW_concrete_bent.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/RW_concrete_bent_layers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/RW_concrete_bent_layers.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/R_P_T.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/R_P_T.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/R_bent_sides.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/R_bent_sides.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/R_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/R_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/R_edz_left.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/R_edz_left.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/R_edz_right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/R_edz_right.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/R_edz_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/R_edz_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/T_edz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/T_edz.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/T_edz_basic.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/T_edz_basic.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/T_edz_left.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/T_edz_left.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/T_edz_right.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/T_edz_right.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/T_edz_tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/T_edz_tranch.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/build_tranch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/build_tranch.py -------------------------------------------------------------------------------- /examples/tranch_slice_new/result.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/result.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/test_children.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/test_children.yaml -------------------------------------------------------------------------------- /examples/tranch_slice_new/test_children2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tranch_slice_new/test_children2.yaml -------------------------------------------------------------------------------- /examples/tuk/test_TUK_rock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tuk/test_TUK_rock.json -------------------------------------------------------------------------------- /examples/tutorials/simple_children/child_1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_children/child_1.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_children/child_2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_children/child_2.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_children/parent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_children/parent.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_children/parent_all.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_children/parent_all.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_children/parent_items.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_children/parent_items.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_layer/curved_layer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_layer/curved_layer.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_layer/filtered_matrix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_layer/filtered_matrix.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_layer/layer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_layer/layer.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_layer/matrix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_layer/matrix.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_layer/multi_height_layer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_layer/multi_height_layer.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_layer/multi_height_layer_zones.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_layer/multi_height_layer_zones.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_layer/multi_layer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_layer/multi_layer.yaml -------------------------------------------------------------------------------- /examples/tutorials/simple_layer/nodes_layer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/tutorials/simple_layer/nodes_layer.yaml -------------------------------------------------------------------------------- /examples/well_3_RAO/RW_in_bent.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/well_3_RAO/RW_in_bent.yaml -------------------------------------------------------------------------------- /examples/well_3_RAO/single_well.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/well_3_RAO/single_well.yaml -------------------------------------------------------------------------------- /examples/well_3_RAO/tranch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/well_3_RAO/tranch.yaml -------------------------------------------------------------------------------- /examples/well_boundary/main_well.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/well_boundary/main_well.json -------------------------------------------------------------------------------- /examples/well_boundary/wells_parent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/examples/well_boundary/wells_parent.json -------------------------------------------------------------------------------- /images/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/core.png -------------------------------------------------------------------------------- /images/cross_section_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_1.png -------------------------------------------------------------------------------- /images/cross_section_1_draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_1_draft.png -------------------------------------------------------------------------------- /images/cross_section_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2.png -------------------------------------------------------------------------------- /images/cross_section_2_decomposition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_decomposition.png -------------------------------------------------------------------------------- /images/cross_section_2_draft.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_draft.png -------------------------------------------------------------------------------- /images/cross_section_2_geometry_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_geometry_bottom.png -------------------------------------------------------------------------------- /images/cross_section_2_geometry_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_geometry_main.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_main_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_main_default.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_hexahedral_bottom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_hexahedral_bottom_1.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_hexahedral_bottom_bump_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_hexahedral_bottom_bump_1.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_hexahedral_bottom_bump_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_hexahedral_bottom_bump_2.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_hexahedral_bottom_progression_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_hexahedral_bottom_progression_1.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_hexahedral_bottom_progression_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_hexahedral_bottom_progression_2.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_hexahedral_bottom_zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_hexahedral_bottom_zones.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_hexahedral_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_hexahedral_main.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_tetrahedral_bottom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_tetrahedral_bottom_1.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_tetrahedral_bottom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_tetrahedral_bottom_2.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_tetrahedral_main_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_tetrahedral_main_1.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_structured_tetrahedral_main_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_structured_tetrahedral_main_2.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_hexahedral_bottom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_hexahedral_bottom_1.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_hexahedral_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_hexahedral_main.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_tetrahedral_bottom_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_tetrahedral_bottom_1.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_tetrahedral_bottom_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_tetrahedral_bottom_2.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_tetrahedral_bottom_global_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_tetrahedral_bottom_global_1.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_tetrahedral_bottom_global_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_tetrahedral_bottom_global_2.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_tetrahedral_bottom_global_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_tetrahedral_bottom_global_3.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_tetrahedral_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_tetrahedral_main.png -------------------------------------------------------------------------------- /images/cross_section_2_mesh_unstructured_tetrahedral_main_global.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/cross_section_2_mesh_unstructured_tetrahedral_main_global.png -------------------------------------------------------------------------------- /images/custom_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/custom_block.png -------------------------------------------------------------------------------- /images/half_layer_with_holes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/half_layer_with_holes.png -------------------------------------------------------------------------------- /images/large_matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/large_matrix.png -------------------------------------------------------------------------------- /images/matrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/matrix.png -------------------------------------------------------------------------------- /images/quarter_layer_with_holes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/quarter_layer_with_holes.png -------------------------------------------------------------------------------- /images/readme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/readme.jpg -------------------------------------------------------------------------------- /images/simple_cylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/simple_cylinder.png -------------------------------------------------------------------------------- /images/simple_half_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/simple_half_layer.png -------------------------------------------------------------------------------- /images/simple_quarter_layer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/simple_quarter_layer.png -------------------------------------------------------------------------------- /images/simple_stellarator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/simple_stellarator.png -------------------------------------------------------------------------------- /images/simple_tokamak.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/simple_tokamak.png -------------------------------------------------------------------------------- /images/simple_torus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/simple_torus.png -------------------------------------------------------------------------------- /images/sweden_experiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/sweden_experiment.png -------------------------------------------------------------------------------- /images/sweden_experiment_tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/sweden_experiment_tree.png -------------------------------------------------------------------------------- /images/test_cylinder_simple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/test_cylinder_simple.png -------------------------------------------------------------------------------- /images/test_cylinder_simple_t.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/test_cylinder_simple_t.png -------------------------------------------------------------------------------- /images/test_cylinder_simple_tr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/test_cylinder_simple_tr.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_child_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_child_1.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_child_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_child_2.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_2.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_3.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_all.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_all_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_all_2.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_all_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_all_3.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_items.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_items_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_items_2.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_items_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_items_3.png -------------------------------------------------------------------------------- /images/tutorial_simple_children_parent_items_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_children_parent_items_4.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_1.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_2.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_3.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_4.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_5.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_6.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_7.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_8.png -------------------------------------------------------------------------------- /images/tutorial_simple_layer_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/tutorial_simple_layer_9.png -------------------------------------------------------------------------------- /images/wells_parent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/images/wells_parent.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements/common.txt: -------------------------------------------------------------------------------- 1 | gmsh==4.9.5 2 | numpy 3 | pyvis==0.1.9 4 | pyyaml==6.0.0 -------------------------------------------------------------------------------- /requirements/dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/requirements/dev.txt -------------------------------------------------------------------------------- /requirements/prod.txt: -------------------------------------------------------------------------------- 1 | -r common.txt -------------------------------------------------------------------------------- /src/gmsh_scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/__main__.py -------------------------------------------------------------------------------- /src/gmsh_scripts/block/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/block/__init__.py -------------------------------------------------------------------------------- /src/gmsh_scripts/block/block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/block/block.py -------------------------------------------------------------------------------- /src/gmsh_scripts/block/half_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/block/half_layer.py -------------------------------------------------------------------------------- /src/gmsh_scripts/block/layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/block/layer.py -------------------------------------------------------------------------------- /src/gmsh_scripts/block/matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/block/matrix.py -------------------------------------------------------------------------------- /src/gmsh_scripts/block/polyhedron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/block/polyhedron.py -------------------------------------------------------------------------------- /src/gmsh_scripts/block/quarter_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/block/quarter_layer.py -------------------------------------------------------------------------------- /src/gmsh_scripts/boolean/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/boolean/boolean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/boolean/boolean.py -------------------------------------------------------------------------------- /src/gmsh_scripts/coordinate_system/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/coordinate_system/coordinate_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/coordinate_system/coordinate_system.py -------------------------------------------------------------------------------- /src/gmsh_scripts/entity/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/entity/__init__.py -------------------------------------------------------------------------------- /src/gmsh_scripts/entity/curve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/entity/curve.py -------------------------------------------------------------------------------- /src/gmsh_scripts/entity/curve_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/entity/curve_loop.py -------------------------------------------------------------------------------- /src/gmsh_scripts/entity/point.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/entity/point.py -------------------------------------------------------------------------------- /src/gmsh_scripts/entity/surface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/entity/surface.py -------------------------------------------------------------------------------- /src/gmsh_scripts/entity/surface_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/entity/surface_loop.py -------------------------------------------------------------------------------- /src/gmsh_scripts/entity/volume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/entity/volume.py -------------------------------------------------------------------------------- /src/gmsh_scripts/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/factory.py -------------------------------------------------------------------------------- /src/gmsh_scripts/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/load.py -------------------------------------------------------------------------------- /src/gmsh_scripts/optimize/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/optimize/optimize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/optimize/optimize.py -------------------------------------------------------------------------------- /src/gmsh_scripts/parse/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/parse/parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/parse/parse.py -------------------------------------------------------------------------------- /src/gmsh_scripts/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/plot.py -------------------------------------------------------------------------------- /src/gmsh_scripts/quadrate/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/quadrate/quadrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/quadrate/quadrate.py -------------------------------------------------------------------------------- /src/gmsh_scripts/refine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/refine/refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/refine/refine.py -------------------------------------------------------------------------------- /src/gmsh_scripts/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/registry.py -------------------------------------------------------------------------------- /src/gmsh_scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/run.py -------------------------------------------------------------------------------- /src/gmsh_scripts/size/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/size/size.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/size/size.py -------------------------------------------------------------------------------- /src/gmsh_scripts/smooth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/smooth/smooth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/smooth/smooth.py -------------------------------------------------------------------------------- /src/gmsh_scripts/strategy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/strategy/strategy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/strategy/strategy.py -------------------------------------------------------------------------------- /src/gmsh_scripts/structure/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/structure/structure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/structure/structure.py -------------------------------------------------------------------------------- /src/gmsh_scripts/support/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/support/support.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/support/support.py -------------------------------------------------------------------------------- /src/gmsh_scripts/transform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/transform/transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/transform/transform.py -------------------------------------------------------------------------------- /src/gmsh_scripts/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/utils/__init__.py -------------------------------------------------------------------------------- /src/gmsh_scripts/utils/obj2gmsh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/utils/obj2gmsh.py -------------------------------------------------------------------------------- /src/gmsh_scripts/zone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/gmsh_scripts/zone/zone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/src/gmsh_scripts/zone/zone.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/block/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/block/polyhedron/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/block/polyhedron/cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/cube.json -------------------------------------------------------------------------------- /tests/block/polyhedron/dodecahedron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/dodecahedron.json -------------------------------------------------------------------------------- /tests/block/polyhedron/elbow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/elbow.json -------------------------------------------------------------------------------- /tests/block/polyhedron/icosahedron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/icosahedron.json -------------------------------------------------------------------------------- /tests/block/polyhedron/multi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/multi.json -------------------------------------------------------------------------------- /tests/block/polyhedron/octahedron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/octahedron.json -------------------------------------------------------------------------------- /tests/block/polyhedron/pyramid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/pyramid.json -------------------------------------------------------------------------------- /tests/block/polyhedron/test_polyhedron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/test_polyhedron.py -------------------------------------------------------------------------------- /tests/block/polyhedron/tetrahedron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/block/polyhedron/tetrahedron.json -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/rise/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/examples/rise/cube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/examples/rise/cube.yml -------------------------------------------------------------------------------- /tests/examples/rise/cylinder.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/examples/rise/cylinder.yml -------------------------------------------------------------------------------- /tests/examples/rise/random_cube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/examples/rise/random_cube.py -------------------------------------------------------------------------------- /tests/examples/rise/random_cube.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/examples/rise/random_cube.yml -------------------------------------------------------------------------------- /tests/examples/rise/test_rise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/examples/rise/test_rise.py -------------------------------------------------------------------------------- /tests/examples/test_examples.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/json_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/json_test/cast_iron.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/json_test/cast_iron.json -------------------------------------------------------------------------------- /tests/json_test/container.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/json_test/container.json -------------------------------------------------------------------------------- /tests/json_test/filling.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/json_test/filling.json -------------------------------------------------------------------------------- /tests/json_test/test_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/json_test/test_json.py -------------------------------------------------------------------------------- /tests/transform/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transform/transformation_matrix/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/transform/transformation_matrix/cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/transform/transformation_matrix/cube.json -------------------------------------------------------------------------------- /tests/transform/transformation_matrix/test_transformation_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/transform/transformation_matrix/test_transformation_matrix.py -------------------------------------------------------------------------------- /tests/yaml_test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/yaml_test/cast_iron.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/yaml_test/cast_iron.yml -------------------------------------------------------------------------------- /tests/yaml_test/container.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/yaml_test/container.yml -------------------------------------------------------------------------------- /tests/yaml_test/filling.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/yaml_test/filling.yml -------------------------------------------------------------------------------- /tests/yaml_test/test_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romanzes637/gmsh_scripts/HEAD/tests/yaml_test/test_yaml.py --------------------------------------------------------------------------------