23352: [CEA] Order and naming of meshing algorithms
This commit is contained in:
parent
6a46bd513e
commit
34ae8dae50
@ -18,7 +18,7 @@ geompy.addToStudy(box, "Box")
|
|||||||
# 1. Create a triangular 2D mesh on the box with NETGEN_1D2D algorithm
|
# 1. Create a triangular 2D mesh on the box with NETGEN_1D2D algorithm
|
||||||
triaN = smesh.Mesh(box, "Box : triangular mesh by NETGEN_1D2D")
|
triaN = smesh.Mesh(box, "Box : triangular mesh by NETGEN_1D2D")
|
||||||
|
|
||||||
# create a Netgen_1D2D algorithm for solids
|
# create a NETGEN_1D2D algorithm for solids
|
||||||
algo2D = triaN.Triangle(smeshBuilder.NETGEN_1D2D)
|
algo2D = triaN.Triangle(smeshBuilder.NETGEN_1D2D)
|
||||||
|
|
||||||
# define hypotheses
|
# define hypotheses
|
||||||
@ -33,7 +33,7 @@ n12_params.SetMaxSize(300)
|
|||||||
# 2. Create a tetrahedral mesh on the box with NETGEN_1D2D3D algorithm (full netgen)
|
# 2. Create a tetrahedral mesh on the box with NETGEN_1D2D3D algorithm (full netgen)
|
||||||
tetraN = smesh.Mesh(box, "Box : tetrahedrical mesh by NETGEN_1D2D3D")
|
tetraN = smesh.Mesh(box, "Box : tetrahedrical mesh by NETGEN_1D2D3D")
|
||||||
|
|
||||||
# create a Netgen_1D2D3D algorithm for solids
|
# create a NETGEN_1D2D3D algorithm for solids
|
||||||
algo3D = tetraN.Tetrahedron(smeshBuilder.FULL_NETGEN)
|
algo3D = tetraN.Tetrahedron(smeshBuilder.FULL_NETGEN)
|
||||||
|
|
||||||
# define hypotheses
|
# define hypotheses
|
||||||
|
@ -15,8 +15,8 @@ computations. The prisms constructed on the quadrangular mesh faces are
|
|||||||
actually the hexahedrons.</li>
|
actually the hexahedrons.</li>
|
||||||
|
|
||||||
<li><b>Quadrangle Preference</b> - This additional hypothesis can be
|
<li><b>Quadrangle Preference</b> - This additional hypothesis can be
|
||||||
used together with Netgen 2D algorithm.
|
used together with NETGEN 2D algorithm.
|
||||||
It allows Netgen 2D to build quad-dominant meshes.</li>
|
It allows NETGEN 2D to build quad-dominant meshes.</li>
|
||||||
</ul>
|
</ul>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
|
@ -1,24 +1,24 @@
|
|||||||
/*!
|
/*!
|
||||||
|
|
||||||
\page netgen_2d_3d_hypo_page Netgen 2D and 3D hypotheses
|
\page netgen_2d_3d_hypo_page NETGEN 2D and 3D hypotheses
|
||||||
|
|
||||||
<b>Netgen 2D Parameters</b> and <b>Netgen 3D Parameters</b> hypotheses work only with
|
<b>NETGEN 2D Parameters</b> and <b>NETGEN 3D Parameters</b> hypotheses work only with
|
||||||
<b>Netgen 1D-2D</b>, <b>Netgen 2D</b>, <b>Netgen 1D-2D-3D</b> and
|
<b>NETGEN 1D-2D</b>, <b>NETGEN 2D</b>, <b>NETGEN 1D-2D-3D</b> and
|
||||||
<b>Netgen 3D</b> algorithms. <b>Netgen 1D-2D</b> and <b>Netgen
|
<b>NETGEN 3D</b> algorithms. <b>NETGEN 1D-2D</b> and <b>NETGEN
|
||||||
1D-2D-3D</b> algorithms do not require definition of lower-level
|
1D-2D-3D</b> algorithms do not require definition of lower-level
|
||||||
hypotheses and algorithms (2D and 1D for meshing 3D objects and 1D for
|
hypotheses and algorithms (2D and 1D for meshing 3D objects and 1D for
|
||||||
meshing 2D objects).
|
meshing 2D objects).
|
||||||
|
|
||||||
\image html netgen2d3d.png
|
\image html netgen2d3d.png
|
||||||
<center><em>Hypothesis dialog boxes of <b>Netgen 1D-2D</b> and <b>Netgen
|
<center><em>Hypothesis dialog boxes of <b>NETGEN 1D-2D</b> and <b>NETGEN
|
||||||
1D-2D-3D</b> algorithms are same</em></center>
|
1D-2D-3D</b> algorithms are same</em></center>
|
||||||
<br>
|
<br>
|
||||||
|
|
||||||
\image html netgen2d3d_only.png
|
\image html netgen2d3d_only.png
|
||||||
<center><em>Dialog boxes of <b>Netgen 2D</b> and <b>Netgen 3D</b>
|
<center><em>Dialog boxes of <b>NETGEN 2D</b> and <b>NETGEN 3D</b>
|
||||||
algorithms </em></center>
|
algorithms </em></center>
|
||||||
|
|
||||||
- <b>Name</b> - allows to define the name for the algorithm (Netgen
|
- <b>Name</b> - allows to define the name for the algorithm (NETGEN
|
||||||
2D (or 3D) Parameters by default).
|
2D (or 3D) Parameters by default).
|
||||||
- <b>Max Size</b> - maximum linear dimensions for mesh cells.
|
- <b>Max Size</b> - maximum linear dimensions for mesh cells.
|
||||||
- <b>Min Size</b> - minimum linear dimensions for mesh cells. It is
|
- <b>Min Size</b> - minimum linear dimensions for mesh cells. It is
|
||||||
@ -70,7 +70,7 @@ can be changed.
|
|||||||
|
|
||||||
\image html netgen2d3d_simple.png
|
\image html netgen2d3d_simple.png
|
||||||
|
|
||||||
<b>Netgen 2D simple parameters</b> and <b>Netgen 3D simple
|
<b>NETGEN 2D simple parameters</b> and <b>NETGEN 3D simple
|
||||||
parameters</b> allow defining the size of elements for each
|
parameters</b> allow defining the size of elements for each
|
||||||
dimension.
|
dimension.
|
||||||
|
|
||||||
@ -94,7 +94,7 @@ volumic elements will be equal to an average area of 2D elements, else
|
|||||||
- <b>Max. Element Volume</b> specifies expected maximum element volume
|
- <b>Max. Element Volume</b> specifies expected maximum element volume
|
||||||
of 3d elements.
|
of 3d elements.
|
||||||
|
|
||||||
\note Netgen algorithm does not strictly follow the input
|
\note NETGEN algorithm does not strictly follow the input
|
||||||
parameters. The actual mesh can be more or less dense than
|
parameters. The actual mesh can be more or less dense than
|
||||||
required. There are several factors in it:
|
required. There are several factors in it:
|
||||||
- NETGEN does not actually use <b>Number of Segments</b> parameter for
|
- NETGEN does not actually use <b>Number of Segments</b> parameter for
|
||||||
|
@ -28,16 +28,16 @@
|
|||||||
|
|
||||||
<meshers>
|
<meshers>
|
||||||
|
|
||||||
<meshers-group name="NETGEN"
|
<meshers-group name ="NETGEN"
|
||||||
resources="NETGENPlugin"
|
resources ="NETGENPlugin"
|
||||||
idl-module="NETGENPlugin"
|
idl-module="NETGENPlugin"
|
||||||
server-lib="NETGENEngine"
|
server-lib="NETGENEngine"
|
||||||
gui-lib="NETGENPluginGUI">
|
gui-lib ="NETGENPluginGUI">
|
||||||
<hypotheses>
|
<hypotheses>
|
||||||
<hypothesis type="NETGEN_Parameters"
|
<hypothesis type ="NETGEN_Parameters"
|
||||||
label-id="NETGEN 3D Parameters"
|
label-id="NETGEN 3D Parameters"
|
||||||
icon-id="mesh_hypo_netgen.png"
|
icon-id ="mesh_hypo_netgen.png"
|
||||||
dim="3">
|
dim ="3">
|
||||||
<python-wrap>
|
<python-wrap>
|
||||||
<accumulative-methods>
|
<accumulative-methods>
|
||||||
SetLocalSizeOnShape,
|
SetLocalSizeOnShape,
|
||||||
@ -45,10 +45,10 @@
|
|||||||
</accumulative-methods>
|
</accumulative-methods>
|
||||||
</python-wrap>
|
</python-wrap>
|
||||||
</hypothesis>
|
</hypothesis>
|
||||||
<hypothesis type="NETGEN_Parameters_2D"
|
<hypothesis type ="NETGEN_Parameters_2D"
|
||||||
label-id="NETGEN 2D Parameters"
|
label-id="NETGEN 2D Parameters"
|
||||||
icon-id="mesh_hypo_netgen_2d.png"
|
icon-id ="mesh_hypo_netgen_2d.png"
|
||||||
dim="2">
|
dim ="2">
|
||||||
<python-wrap>
|
<python-wrap>
|
||||||
<accumulative-methods>
|
<accumulative-methods>
|
||||||
SetLocalSizeOnShape,
|
SetLocalSizeOnShape,
|
||||||
@ -56,10 +56,10 @@
|
|||||||
</accumulative-methods>
|
</accumulative-methods>
|
||||||
</python-wrap>
|
</python-wrap>
|
||||||
</hypothesis>
|
</hypothesis>
|
||||||
<hypothesis type="NETGEN_Parameters_3D"
|
<hypothesis type ="NETGEN_Parameters_3D"
|
||||||
label-id="NETGEN 3D Parameters"
|
label-id="NETGEN 3D Parameters"
|
||||||
icon-id="mesh_hypo_netgen.png"
|
icon-id ="mesh_hypo_netgen.png"
|
||||||
dim="3">
|
dim ="3">
|
||||||
<python-wrap>
|
<python-wrap>
|
||||||
<accumulative-methods>
|
<accumulative-methods>
|
||||||
SetLocalSizeOnShape,
|
SetLocalSizeOnShape,
|
||||||
@ -67,10 +67,10 @@
|
|||||||
</accumulative-methods>
|
</accumulative-methods>
|
||||||
</python-wrap>
|
</python-wrap>
|
||||||
</hypothesis>
|
</hypothesis>
|
||||||
<hypothesis type="NETGEN_Parameters_2D_ONLY"
|
<hypothesis type ="NETGEN_Parameters_2D_ONLY"
|
||||||
label-id="NETGEN 2D Parameters"
|
label-id="NETGEN 2D Parameters"
|
||||||
icon-id="mesh_hypo_netgen_2d.png"
|
icon-id ="mesh_hypo_netgen_2d.png"
|
||||||
dim="2">
|
dim ="2">
|
||||||
<python-wrap>
|
<python-wrap>
|
||||||
<accumulative-methods>
|
<accumulative-methods>
|
||||||
SetLocalSizeOnShape,
|
SetLocalSizeOnShape,
|
||||||
@ -78,25 +78,28 @@
|
|||||||
</accumulative-methods>
|
</accumulative-methods>
|
||||||
</python-wrap>
|
</python-wrap>
|
||||||
</hypothesis>
|
</hypothesis>
|
||||||
<hypothesis type="NETGEN_SimpleParameters_2D"
|
<hypothesis type ="NETGEN_SimpleParameters_2D"
|
||||||
label-id="NETGEN 2D Simple Parameters"
|
label-id="NETGEN 2D Simple Parameters"
|
||||||
icon-id="mesh_hypo_netgen_2d.png"
|
icon-id ="mesh_hypo_netgen_2d.png"
|
||||||
dim="2"/>
|
dim ="2"/>
|
||||||
<hypothesis type="NETGEN_SimpleParameters_3D"
|
<hypothesis type ="NETGEN_SimpleParameters_3D"
|
||||||
label-id="NETGEN 3D Simple Parameters"
|
label-id="NETGEN 3D Simple Parameters"
|
||||||
icon-id="mesh_hypo_netgen.png"
|
icon-id ="mesh_hypo_netgen.png"
|
||||||
dim="3"/>
|
dim ="3"/>
|
||||||
</hypotheses>
|
</hypotheses>
|
||||||
|
|
||||||
<algorithms>
|
<algorithms>
|
||||||
<algorithm type="NETGEN_3D"
|
<algorithm type ="NETGEN_3D"
|
||||||
label-id="Tetrahedron (Netgen)"
|
label-id ="NETGEN 3D"
|
||||||
icon-id="mesh_algo_tetra.png"
|
icon-id ="mesh_algo_tetra.png"
|
||||||
hypos="MaxElementVolume,NETGEN_Parameters_3D"
|
group-id ="1"
|
||||||
|
priority ="20"
|
||||||
|
hypos ="MaxElementVolume,NETGEN_Parameters_3D"
|
||||||
opt-hypos="ViscousLayers"
|
opt-hypos="ViscousLayers"
|
||||||
need-geom="false"
|
need-geom="false"
|
||||||
input="TRIA,QUAD"
|
input ="TRIA,QUAD"
|
||||||
output="TETRA,PYRAMID"
|
output ="TETRA,PYRAMID"
|
||||||
dim="3">
|
dim ="3">
|
||||||
<python-wrap>
|
<python-wrap>
|
||||||
<algo>NETGEN_3D=Tetrahedron()</algo>
|
<algo>NETGEN_3D=Tetrahedron()</algo>
|
||||||
<hypo>MaxElementVolume=MaxElementVolume(SetMaxElementVolume())</hypo>
|
<hypo>MaxElementVolume=MaxElementVolume(SetMaxElementVolume())</hypo>
|
||||||
@ -105,14 +108,16 @@
|
|||||||
</python-wrap>
|
</python-wrap>
|
||||||
</algorithm>
|
</algorithm>
|
||||||
|
|
||||||
<algorithm type="NETGEN_2D_ONLY"
|
<algorithm type ="NETGEN_2D_ONLY"
|
||||||
label-id="Netgen 2D"
|
label-id ="NETGEN 2D"
|
||||||
icon-id="mesh_algo_netgen_2d.png"
|
icon-id ="mesh_algo_netgen_2d.png"
|
||||||
hypos="LengthFromEdges,MaxElementArea,NETGEN_Parameters_2D_ONLY"
|
group-id ="1"
|
||||||
|
priority ="20"
|
||||||
|
hypos ="LengthFromEdges,MaxElementArea,NETGEN_Parameters_2D_ONLY"
|
||||||
opt-hypos="QuadranglePreference,ViscousLayers2D"
|
opt-hypos="QuadranglePreference,ViscousLayers2D"
|
||||||
input="EDGE"
|
input ="EDGE"
|
||||||
output="TRIA,QUAD"
|
output ="TRIA,QUAD"
|
||||||
dim="2">
|
dim ="2">
|
||||||
<python-wrap>
|
<python-wrap>
|
||||||
<algo>NETGEN_2D_ONLY=Triangle(algo=smeshBuilder.NETGEN_2D)</algo>
|
<algo>NETGEN_2D_ONLY=Triangle(algo=smeshBuilder.NETGEN_2D)</algo>
|
||||||
<hypo>LengthFromEdges=LengthFromEdges()</hypo>
|
<hypo>LengthFromEdges=LengthFromEdges()</hypo>
|
||||||
@ -123,13 +128,15 @@
|
|||||||
</python-wrap>
|
</python-wrap>
|
||||||
</algorithm>
|
</algorithm>
|
||||||
|
|
||||||
<algorithm type="NETGEN_2D"
|
<algorithm type ="NETGEN_2D"
|
||||||
label-id="Netgen 1D-2D"
|
label-id ="NETGEN 1D-2D"
|
||||||
icon-id="mesh_algo_netgen_2d.png"
|
icon-id ="mesh_algo_netgen_2d.png"
|
||||||
hypos="NETGEN_Parameters_2D, NETGEN_SimpleParameters_2D"
|
group-id ="1"
|
||||||
opt-hypos="ViscousLayers2D"
|
priority ="10"
|
||||||
output="TRIA,QUAD"
|
hypos ="NETGEN_Parameters_2D, NETGEN_SimpleParameters_2D"
|
||||||
dim="2"
|
opt-hypos ="ViscousLayers2D"
|
||||||
|
output ="TRIA,QUAD"
|
||||||
|
dim ="2"
|
||||||
support-submeshes="true">
|
support-submeshes="true">
|
||||||
<python-wrap>
|
<python-wrap>
|
||||||
<algo>NETGEN_2D=Triangle(algo=smeshBuilder.NETGEN_1D2D)</algo>
|
<algo>NETGEN_2D=Triangle(algo=smeshBuilder.NETGEN_1D2D)</algo>
|
||||||
@ -139,12 +146,14 @@
|
|||||||
</python-wrap>
|
</python-wrap>
|
||||||
</algorithm>
|
</algorithm>
|
||||||
|
|
||||||
<algorithm type="NETGEN_2D3D"
|
<algorithm type ="NETGEN_2D3D"
|
||||||
label-id="Netgen 1D-2D-3D"
|
label-id ="NETGEN 1D-2D-3D"
|
||||||
icon-id="mesh_algo_netgen_2d3d.png"
|
icon-id ="mesh_algo_netgen_2d3d.png"
|
||||||
hypos="NETGEN_Parameters, NETGEN_SimpleParameters_3D"
|
group-id ="1"
|
||||||
output="TETRA,PYRAMID"
|
priority ="10"
|
||||||
dim="3"
|
hypos ="NETGEN_Parameters, NETGEN_SimpleParameters_3D"
|
||||||
|
output ="TETRA,PYRAMID"
|
||||||
|
dim ="3"
|
||||||
support-submeshes="true">
|
support-submeshes="true">
|
||||||
<python-wrap>
|
<python-wrap>
|
||||||
<algo>NETGEN_2D3D=Tetrahedron(algo=smeshBuilder.NETGEN_1D2D3D)</algo>
|
<algo>NETGEN_2D3D=Tetrahedron(algo=smeshBuilder.NETGEN_1D2D3D)</algo>
|
||||||
@ -158,11 +167,11 @@
|
|||||||
|
|
||||||
<hypotheses-set-group>
|
<hypotheses-set-group>
|
||||||
|
|
||||||
<hypotheses-set name="Automatic Tetrahedralization"
|
<hypotheses-set name ="Automatic Tetrahedralization"
|
||||||
hypos="NETGEN_Parameters"
|
hypos="NETGEN_Parameters"
|
||||||
algos="NETGEN_2D3D"/>
|
algos="NETGEN_2D3D"/>
|
||||||
|
|
||||||
<hypotheses-set name="Automatic Triangulation"
|
<hypotheses-set name ="Automatic Triangulation"
|
||||||
hypos="NETGEN_Parameters_2D"
|
hypos="NETGEN_Parameters_2D"
|
||||||
algos="NETGEN_2D"/>
|
algos="NETGEN_2D"/>
|
||||||
|
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<name>@default</name>
|
<name>@default</name>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_2D_HYPOTHESIS</source>
|
<source>NETGEN_2D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 2D</translation>
|
<translation>NETGEN 2D</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_2D_TITLE</source>
|
<source>NETGEN_2D_TITLE</source>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_3D_HYPOTHESIS</source>
|
<source>NETGEN_3D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 3D</translation>
|
<translation>NETGEN 3D</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_3D_TITLE</source>
|
<source>NETGEN_3D_TITLE</source>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_3D_HYPOTHESIS</source>
|
<source>NETGEN_SimpleParameters_3D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 3D simple parameters</translation>
|
<translation>NETGEN 3D simple parameters</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_3D_TITLE</source>
|
<source>NETGEN_SimpleParameters_3D_TITLE</source>
|
||||||
@ -29,7 +29,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_2D_HYPOTHESIS</source>
|
<source>NETGEN_SimpleParameters_2D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 2D simple parameters</translation>
|
<translation>NETGEN 2D simple parameters</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_2D_TITLE</source>
|
<source>NETGEN_SimpleParameters_2D_TITLE</source>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<name>@default</name>
|
<name>@default</name>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_2D_HYPOTHESIS</source>
|
<source>NETGEN_2D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 2D</translation>
|
<translation>NETGEN 2D</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_2D_TITLE</source>
|
<source>NETGEN_2D_TITLE</source>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_3D_HYPOTHESIS</source>
|
<source>NETGEN_3D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 3D</translation>
|
<translation>NETGEN 3D</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_3D_TITLE</source>
|
<source>NETGEN_3D_TITLE</source>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_3D_HYPOTHESIS</source>
|
<source>NETGEN_SimpleParameters_3D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 3D paramètres simplifiés</translation>
|
<translation>NETGEN 3D paramètres simplifiés</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_3D_TITLE</source>
|
<source>NETGEN_SimpleParameters_3D_TITLE</source>
|
||||||
@ -29,7 +29,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_2D_HYPOTHESIS</source>
|
<source>NETGEN_SimpleParameters_2D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 2D paramètres simplifiés</translation>
|
<translation>NETGEN 2D paramètres simplifiés</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_2D_TITLE</source>
|
<source>NETGEN_SimpleParameters_2D_TITLE</source>
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
<name>@default</name>
|
<name>@default</name>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_2D_HYPOTHESIS</source>
|
<source>NETGEN_2D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 2D</translation>
|
<translation>NETGEN 2D</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_2D_TITLE</source>
|
<source>NETGEN_2D_TITLE</source>
|
||||||
@ -13,7 +13,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_3D_HYPOTHESIS</source>
|
<source>NETGEN_3D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 3D</translation>
|
<translation>NETGEN 3D</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_3D_TITLE</source>
|
<source>NETGEN_3D_TITLE</source>
|
||||||
@ -21,7 +21,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_3D_HYPOTHESIS</source>
|
<source>NETGEN_SimpleParameters_3D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 3D 簡易パラメーター</translation>
|
<translation>NETGEN 3D 簡易パラメーター</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_3D_TITLE</source>
|
<source>NETGEN_SimpleParameters_3D_TITLE</source>
|
||||||
@ -29,7 +29,7 @@
|
|||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_2D_HYPOTHESIS</source>
|
<source>NETGEN_SimpleParameters_2D_HYPOTHESIS</source>
|
||||||
<translation>Netgen 2D 簡易パラメーター</translation>
|
<translation>NETGEN 2D 簡易パラメーター</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<source>NETGEN_SimpleParameters_2D_TITLE</source>
|
<source>NETGEN_SimpleParameters_2D_TITLE</source>
|
||||||
|
Loading…
Reference in New Issue
Block a user