Skip to content

Commit 9d5bd30

Browse files
committedFeb 8, 2020
Explicit path to Scripts added to .py files
1 parent 26f50ef commit 9d5bd30

File tree

32 files changed

+43
-43
lines changed

32 files changed

+43
-43
lines changed
 

‎Contact/Eyebar/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.eyebar.fbd")
8+
os.system("../../Scripts/param.py par.eyebar.fbd")
99
os.system("cgx -b eyebar.fbd")
1010
os.system("ccx eyebar")
11-
os.system("monitor.py eyebar")
11+
os.system("../../Scripts/monitor.py eyebar")
1212
os.system("cgx -b post.fbd")

‎Contact/Hertz_2D/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
os.system("cgx -b pre.fbd")
99
os.system("ccx Hertz")
10-
os.system("monitor.py Hertz")
10+
os.system("../../Scripts/monitor.py Hertz")
1111
os.system("cgx -b post.fbd")
1212
os.system("cgx -b plots.fbd")

‎Contact/Hertz_axi/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
os.system("cgx -b pre.fbd")
99
os.system("ccx Hertz")
10-
os.system("monitor.py Hertz")
10+
os.system("../../Scripts/monitor.py Hertz")
1111
os.system("cgx -b post.fbd")
1212
os.system("cgx -b plots.fbd")

‎Contact/Leafspring/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
os.system("cgx -b pre.fbd")
99
os.system("ccx solve")
10-
os.system("monitor.py solve")
10+
os.system("../../Scripts/monitor.py solve")
1111
os.system("cgx -b post.fbd")
1212

1313

‎Contact/Shell0/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
os.chdir(simPath)
4141
os.system("cgx -bg run.fbd")
4242
# extract frequencies
43-
os.system("dat2txt.py " + ctyp)
43+
os.system("../../Scripts/dat2txt.py " + ctyp)
4444
freq=numpy.genfromtxt("Eigenvalues_1.txt",skip_header=1)
4545
os.chdir("..")
4646

‎Contact/Shell1/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
os.system("cgx -b pre.fbd")
99
os.system("ccx tie")
10-
os.system("monitor.py tie")
10+
os.system("../../Scripts/monitor.py tie")
1111
os.system("cgx -b post.fbd")

‎Contact/Tubes/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
os.system("cgx -b pre.fbd")
99
os.system("ccx solve")
10-
os.system("monitor.py solve")
10+
os.system("../../Scripts/monitor.py solve")
1111
os.system("cgx -b post.fbd")

‎Contact/Valve/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.pre.fbd")
8+
os.system("../../Scripts/param.py par.pre.fbd")
99
os.system("cgx -b pre.fbd")
1010
os.system("ccx valve")
11-
os.system("monitor.py valve")
11+
os.system("../../Scripts/monitor.py valve")
1212
os.system("cgx -b post.fbd")

‎Drahtbiegen/Biegung/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@
5353
os.remove("deform.png")
5454
os.remove("PE.png")
5555

56-
os.system("monitor.py Biegung")
57-
os.system("dat2txt.py Biegung")
56+
os.system("../../Scripts/monitor.py Biegung")
57+
os.system("../../Scripts/dat2txt.py Biegung")
5858
os.system("./Biegung.py")
5959
os.system("cgx -b Animation.fbd")
6060
os.system("cgx -b post.fbd")

‎Kasten/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
os.system("cgx -b pre.fbd")
99
os.system("ccx Kasten")
10-
os.system("monitor.py Kasten")
10+
os.system("../Scripts/monitor.py Kasten")
1111
os.system("cgx -b post.fbd")

‎Linear/BiaxBending/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.run.fbl")
8+
os.system("../../Scripts/param.py par.run.fbl")
99
os.system("cgx -b run.fbl")

‎Linear/Crack1/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.ct.geo a=21.0")
8+
os.system("../../Scripts/param.py par.ct.geo a=21.0")
99
os.system("cgx -b ct.fbd")
10-
os.system("param.py par.ct.geo a=20.5")
10+
os.system("../../Scripts/param.py par.ct.geo a=20.5")
1111
os.system("cgx -b ct.fbd")
1212
os.system("cgx -b path.fbd")

‎Linear/L-Plate/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.run.fbl")
8+
os.system("../../Scripts/param.py par.run.fbl")
99
os.system("cgx -b run.fbl")
1010
os.system("cgx -b vmodes.fbd")
1111
os.system("cgx -b bmodes.fbd")

‎Linear/PSE/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.run.fbl")
8+
os.system("../../Scripts/param.py par.run.fbl")
99
os.system("cgx -b run.fbl")

‎Linear/ShearCenter/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.II-pre.fbl")
8+
os.system("../../Scripts/param.py par.II-pre.fbl")
99
os.system("cgx -b II-pre.fbl")
1010
os.system("ccx II")
1111
os.system("cgx -b II-post.fbl")

‎Linear/StressConc/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.pre.fbl")
8+
os.system("../../Scripts/param.py par.pre.fbl")
99
os.system("cgx -b pre.fbl")
1010
os.system("ccx Stress")
1111
os.system("cgx -b post.fbl")

‎Linear/StressConc1/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.run.fbl")
8+
os.system("../../Scripts/param.py par.run.fbl")
99
os.system("cgx -b run.fbl")
10-
os.system("param.py par.run1.fbl")
10+
os.system("../../Scripts/param.py par.run1.fbl")
1111
os.system("cgx -b run1.fbl")

‎NonLinear/3PB/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.pre.fbl")
8+
os.system("../../Scripts/param.py par.pre.fbl")
99
os.system("cgx -b pre.fbl")
1010
os.system("ccx Biegung")
11-
os.system("monitor.py Biegung")
11+
os.system("../../Scripts/monitor.py Biegung")
1212
os.system("cgx -b cpost.fbl")
1313
os.system("cgx -b post.fbl")

‎NonLinear/Cut/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.pre.fbd")
8+
os.system("../../Scripts/param.py par.pre.fbd")
99
os.system("cgx -b pre.fbd")
1010
os.system("ccx solve")
11-
os.system("monitor.py solve")
11+
os.system("../../Scripts/monitor.py solve")
1212
os.system("cgx -b post.fbd")
1313

1414

‎NonLinear/Honeycomb/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.pre.fbl")
8+
os.system("../../Scripts/param.py par.pre.fbl")
99
os.system("cgx -b pre.fbl")
1010
os.system("ccx Biegung")
11-
os.system("monitor.py Biegung")
11+
os.system("../../Scripts/monitor.py Biegung")
1212
os.system("cgx -b post.fbd")

‎NonLinear/Rohrknie/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
os.system("cgx -b solid-modal.fbd")
1111
os.system("cgx -b solid.fbd")
1212
os.system("ccx solid-static")
13-
os.system("monitor.py solid-static")
13+
os.system("../../Scripts/monitor.py solid-static")
1414
os.system("cgx -b post-solid-static.fbd")
1515
os.system("cgx -b solid-sym-modal.fbd")

‎NonLinear/Sandwichtest/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
os.system("cgx -b pre.fbl")
99
os.system("ccx Biegung")
10-
os.system("monitor.py Biegung")
10+
os.system("../../Scripts/monitor.py Biegung")
1111
os.system("cgx -b post.fbl")

‎NonLinear/Sections/Plastic/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.pre.fbl")
8+
os.system("../../../Scripts/param.py par.pre.fbl")
99
os.system("cgx -b pre.fbl")
1010
os.system("ccx Biegung")
11-
os.system("monitor.py Biegung")
11+
os.system("../../../Scripts/monitor.py Biegung")
1212
os.system("cgx -b movie.fbl")
1313
os.system("cgx -b chart.fbl")

‎NonLinear/Sections/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.pre.fbl")
8+
os.system("../../Scripts/param.py par.pre.fbl")
99
os.system("cgx -b pre.fbl")
1010
os.system("ccx Biegung")
11-
os.system("monitor.py Biegung")
11+
os.system("../../Scripts/monitor.py Biegung")
1212
os.system("cgx -b post.fbl")

‎NonLinear/TensileTest/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
os.system("cgx -b pre.fbd")
99
os.system("ccx Zug")
10-
os.system("monitor.py Zug")
10+
os.system("../../Scripts/monitor.py Zug")
1111
os.system("cgx -b post.fbd")

‎RVE/Periodic/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

88
os.system("cgx -b RVE.fbd")
9-
os.system("periodic.py all.msh")
9+
os.system("../../Scripts/periodic.py all.msh")
1010
os.system("ccx Solve")
1111
os.system("cgx -b post.fbd")

‎RVE/PlanarSlide/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77

88
os.system("cgx -b RVE.fbd")
99
os.system("ccx Zug")
10-
os.system("monitor.py Zug")
10+
os.system("../../Scripts/monitor.py Zug")
1111
os.system("cgx -b post.fbd")

‎RVE/PlaneOrtho1/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
os.system("cgx -b RVE.fbd")
99
os.system("ccx Zug")
10-
os.system("monitor.py Zug")
10+
os.system("../../Scripts/monitor.py Zug")
1111
os.system("cgx -b verify.fbd")
1212
os.system("cgx -b post.fbd")

‎Test/Joints/test.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
# Enable multithreading for ccx
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

8-
os.system("param.py par.pre.fbl")
8+
os.system("../../Scripts/param.py par.pre.fbl")
99
os.system("cgx -b pre.fbl")
1010
os.system("cgx -b dist.fbl")
1111
os.system("cgx -b kin.fbl")
12-
os.system("param.py par.pre2.fbl")
12+
os.system("../../Scripts/param.py par.pre2.fbl")
1313
os.system("cgx -b pre2.fbl")
1414
os.system("cgx -b kin2.fbl")

‎Test/Supports/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
os.system("ccx solve")
1010
os.system("cgx -b shapes.fbd")
1111
os.system("ccx trans")
12-
os.system("monitor.py trans")
12+
os.system("../../Scripts/monitor.py trans")
1313
os.system("cgx -b post.fbl")
1414
os.system("ccx trfix")
1515
os.system("cgx -b trfix.fbl")

‎Thermal/Thermal distortion/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
os.environ['OMP_NUM_THREADS'] = str(multiprocessing.cpu_count())
77

88
for contact in ('tie', 'pc-ss'):
9-
os.system("param.py par.pre.fbd contact=\"'"+contact+"'\"")
9+
os.system("../../Scripts/param.py par.pre.fbd contact=\"'"+contact+"'\"")
1010
os.system("cgx -b pre.fbd")
1111
os.system("ccx Tjoint")
1212
os.system("cgx -b post.fbd")

‎Thermal/Thermal shock/test.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77

88
os.system("cgx -b pre.fbl")
99
os.system("ccx solve")
10-
os.system("monitor.py solve")
10+
os.system("../../Scripts/monitor.py solve")
1111
os.system("cgx -b anim.fbl")
1212
os.system("cgx -b post.fbl")

0 commit comments

Comments
 (0)
Please sign in to comment.