Skip to content

Commit 33140fd

Browse files
committed
docstrings
1 parent 74885ba commit 33140fd

File tree

1 file changed

+19
-18
lines changed

1 file changed

+19
-18
lines changed

src/ComputationalModels/CartesianTags.jl

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -2,61 +2,62 @@
22
"Shortcuts for the tags of cartesian discrete models."
33
module CartesianTags
44

5-
"Tags indicating points, edges and faces at X0."
5+
"Tags indicating points, edges and faces at plane X0."
66
const faceX0 = [1, 3, 5, 7, 13, 15, 17, 19, 25]
77

8-
"Tags indicating points, edges and faces at X1."
8+
"Tags indicating points, edges and faces at plane X1."
99
const faceX1 = [2, 4, 6, 8, 14, 16, 18, 20, 26]
1010

11-
"Tags indicating points, edges and faces at Y0."
11+
"Tags indicating points, edges and faces at plane Y0."
1212
const faceY0 = [1, 2, 5, 6, 9, 11, 17, 18, 23]
1313

14-
"Tags indicating points, edges and faces at Y1."
14+
"Tags indicating points, edges and faces at plane Y1."
1515
const faceY1 = [3, 4, 7, 8, 10, 12, 19, 20, 24]
1616

17-
"Tags indicating points, edges and faces at Z0."
17+
"Tags indicating points, edges and faces at plane Z0."
1818
const faceZ0 = [1, 2, 3, 4, 9, 10, 13, 14, 21]
1919

20-
"Tags indicating points, edges and faces at Z1."
20+
"Tags indicating points, edges and faces at plane Z1."
2121
const faceZ1 = [5, 6, 7, 8, 11, 12, 15, 16, 22]
2222

2323

24-
"Tag indicating the line at X, Y0, Z0."
24+
"Tag indicating the edge at X, Y0, Z0."
2525
const edgeX00 = [9]
2626

27-
"Tag indicating the line at X, Y1, Z0."
27+
"Tag indicating the edge at X, Y1, Z0."
2828
const edgeX10 = [10]
2929

30-
"Tag indicating the line at X, Y0, Z1."
30+
"Tag indicating the edge at X, Y0, Z1."
3131
const edgeX01 = [11]
3232

33-
"Tag indicating the line at X, Y1, Z1."
33+
"Tag indicating the edge at X, Y1, Z1."
3434
const edgeX11 = [12]
3535

36-
"Tag indicating the line at X0, Y, Z0."
36+
"Tag indicating the edge at X0, Y, Z0."
3737
const edge0Y0 = [13]
3838

39-
"Tag indicating the line at X1, Y, Z0."
39+
"Tag indicating the edge at X1, Y, Z0."
4040
const edge1Y0 = [14]
4141

42-
"Tag indicating the line at X0, Y, Z1."
42+
"Tag indicating the edge at X0, Y, Z1."
4343
const edge0Y1 = [15]
4444

45-
"Tag indicating the line at X1, Y, Z1."
45+
"Tag indicating the edge at X1, Y, Z1."
4646
const edge1Y1 = [16]
4747

48-
"Tag indicating the line at X0, Y0, Z."
48+
"Tag indicating the edge at X0, Y0, Z."
4949
const edge00Z = [17]
5050

51-
"Tag indicating the line at X1, Y0, Z."
51+
"Tag indicating the edge at X1, Y0, Z."
5252
const edge10Z = [18]
5353

54-
"Tag indicating the line at X0, Y1, Z."
54+
"Tag indicating the edge at X0, Y1, Z."
5555
const edge01Z = [19]
5656

57-
"Tag indicating the line at X1, Y1, Z."
57+
"Tag indicating the edge at X1, Y1, Z."
5858
const edge11Z = [20]
5959

60+
6061
"Tag indicating the point at corner X0, Y0, Z0."
6162
const corner000 = [1]
6263

0 commit comments

Comments
 (0)