Salome HOME
Merge from V5_1_main 14/05/2010
[modules/geom.git] / doc / salome / gui / GEOM / input / creating_pipetshape.doc
1 /*!
2
3 \page create_pipetshape_page PipeTShape
4
5 To create a \b PipeTShape in the <b>Main Menu</b> select <b>New Entity - >
6 Advanced - > PipeTShape </b>
7
8 Specify the parameters of the PipeTShape object creation in the opened dialog
9 box and press "Apply" or "Apply & Close" button.
10 Result of each operation will be a GEOM_Object.
11
12 <b>TUI Command:</b> <em>geompy.MakePipeTShape(R1, W1, L1, R2, W2, L2, HexMesh=True, P1=None, P2=None, P3=None)</em>
13
14 <b>Arguments:</b>
15 - \b R1 - Radius of main T-shape pipe.
16 - \b W1 - Thickness of main T-shape pipe.
17 - \b L1 - Length of main T-shape pipe.
18 - \b R2 - Radius of incident T-shape pipe.
19 - \b W2 - Thickness of incident T-shape pipe.
20 - \b L2 - Length of incident T-shape pipe.
21 - \b HexMesh - If True, the shape is splitted in blocks (suitable for hexaedral mesh).
22 - \b P1 - First junction point of main pipe (GEOM Vertex).
23 - \b P2 - Second junction point of main pipe (GEOM Vertex).
24 - \b P3 - Junction point of incident pipe (GEOM Vertex).
25
26 \image html pipetshape_dlg.png
27
28 Example:
29
30 \image html pipetshape.png
31
32 A Pipe T-Shape can be created with a chamfer at the junction of the main and the incident pipes:
33
34 <b>TUI Command:</b> <em>geompy.MakePipeTShapeChamfer(R1, W1, L1, R2, W2, L2, H, W, HexMesh=True, P1=None, P2=None, P3=None)</em>
35
36 <b>Arguments are the same as normal Pipe T-Shape plus:</b>
37 - \b H - Height of the chamfer along incident pipe.
38 - \b W - Width of the chamfer along the main pipe.
39
40 Example:
41
42 \image html pipetshapechamfer.png
43
44 A Pipe T-Shape can be created with a fillet at the junction of the main and the incident pipes:
45
46 <b>TUI Command:</b> <em>geompy.MakePipeTShapeFillet(R1, W1, L1, R2, W2, L2, RF, HexMesh=True, P1=None, P2=None, P3=None)</em>
47
48 <b>Arguments are the same as normal Pipe T-Shape plus:</b>
49 - \b RF - Radius of the fillet.
50
51 Example:
52
53 \image html pipetshapefillet.png
54
55 Our <b>TUI Scripts</b> provide you with useful examples of creation of
56 \ref tui_creation_pipetshape "Advanced objects".
57
58 */