-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
20 changed files
with
197 additions
and
47 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
set term postscript landscape monochrom | ||
#set term x11 | ||
set out "amplitude.ps" | ||
set grid | ||
set title "Amplitude" | ||
set ylabel " y " | ||
set xlabel " x " | ||
plot "excite.out" using 2:3 title 'excite' with linespoints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,19 @@ | ||
read solve.frd new | ||
rot x | ||
rot z | ||
frame | ||
rot c 40 | ||
rot d 60 | ||
rot c 90 | ||
rot r 5 | ||
rot u 3 | ||
view elem | ||
zoom 1.3 | ||
zoom 3 | ||
tra u 10 | ||
tra l 10 | ||
# animation of the deformed geometry coloured by the temperature | ||
seta base se all | ||
copy all new mir y | ||
copy all new mir z | ||
view disp | ||
scal d 1000 | ||
scal d 500 | ||
anim real | ||
movi frames auto | ||
ds 2 ah 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
set term postscript landscape monochrom | ||
#set term x11 | ||
set out "graph_0.ps" | ||
set title "Values at Nodes (post.fbl)" | ||
set grid | ||
set ylabel " D1 " | ||
set xlabel " Time " | ||
plot "graph_0.out" using 3:5 title 'Node=498' with linespoints | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
set term postscript landscape monochrom | ||
#set term x11 | ||
set out "graph_1.ps" | ||
set grid | ||
set title "Values at Nodes (post.fbl)" | ||
set ylabel " T " | ||
set xlabel " Length " | ||
plot "graph_1.out" using 2:3 title 'Setname NNpath' with linespoints |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
set term postscript landscape monochrom | ||
#set term x11 | ||
set out "graph_2.ps" | ||
set grid | ||
set title "Values at Nodes (post.fbl)" | ||
set ylabel " SZZ " | ||
set xlabel " Length " | ||
plot "graph_2.out" using 2:3 title 'Setname NNpath' with linespoints |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
read values.fbl | ||
read Naht.frd new | ||
|
||
# compute the probe locations | ||
valu two 2 | ||
valu neg -1 | ||
valu NBh / NB two | ||
valu xN - L o1 | ||
valu xN - xN NBh | ||
valu lgh / lg two | ||
valu l1h / l1 two | ||
valu yN + y1 l1h | ||
valu yF + y1 l1 | ||
valu yF + yF lgh | ||
valu zbot * T1 neg | ||
valu ztop + Gap T2 | ||
|
||
# select the nodes | ||
seta nodes n all | ||
enq nodes topseam rec xN yN ztop 1 i | ||
enq nodes topfault rec xN yF ztop 1 i | ||
enq nodes botseam rec xN yN zbot 1 i | ||
enq nodes botfault rec xN yF zbot 1 i | ||
|
||
# create the time history plots | ||
seta probes se topseam topfault botseam botfault | ||
graph probes time NDTEMP T | ||
sys convert -rotate 90 graph_0.ps Refs/history.png | ||
|
||
# document the probe positions | ||
rot x | ||
rot c 90 | ||
font d 6 | ||
zoom 2 | ||
text Positions of the probes | ||
plot na probes | ||
hcpy png | ||
sys mv hcpy_1.png Refs/probes.png | ||
|
||
# path plot along the seam on the upper side | ||
enq nodes top rec xN _ ztop 0.1 a | ||
ds -0 e 1 | ||
graph top length + | ||
sys convert -rotate 90 graph_1.ps Refs/pathplot.png | ||
|
||
# plot the path | ||
rot y | ||
frame | ||
rot r 20 | ||
rot u 20 | ||
zoom 3 | ||
text Path for temperature profile | ||
plot n top | ||
hcpy png | ||
sys mv hcpy_2.png Refs/path.png |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,50 @@ | ||
read solve.frd new | ||
read solve.inp nom | ||
#max 2.5 f | ||
rot x | ||
rot -y | ||
rot c -90 | ||
rot l 70 | ||
rot u 10 | ||
frame | ||
rot c 40 | ||
rot d 60 | ||
view elem | ||
zoom 1.3 | ||
zoom 2 | ||
min 0 f l | ||
max 2 f l | ||
|
||
# time history plots | ||
graph * amp | ||
graph Nhist time DISP D1 | ||
sys gnuplot history.gnu | ||
|
||
# path plots | ||
ds 71 e 1 | ||
graph Npath length | ||
ds 72 e 3 | ||
graph Npath length | ||
|
||
# create screen shots | ||
seta base se all | ||
copy all new mir y | ||
copy all new mir z | ||
view disp | ||
scal d 1000 | ||
scal d 500 | ||
|
||
ds 2 e 1 | ||
plot fv base | ||
plus e new n | ||
hcpy png | ||
sys mv hcpy_1.png Refs/start.png | ||
|
||
ds 71 e 1 | ||
plot fv base | ||
plus e new n | ||
hcpy png | ||
sys mv hcpy_2.png Refs/end_of_excitation.png | ||
|
||
ds 149 e 1 | ||
plot fv base | ||
plus e new n | ||
hcpy png | ||
sys mv hcpy_3.png Refs/end.png | ||
|
||
# time history plots | ||
graph * amp | ||
graph Nhist time DISP D1 | ||
min 0 f u | ||
max 1 f u |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
set term pngcairo enhanced | ||
set out "Refs/profile.png" | ||
set key top right | ||
set title "Cross thickness profile at end of excitation" | ||
set grid | ||
set xlabel "Distance in mm" | ||
set ylabel "{/Symbol D}T in K" | ||
set yrange [-1:2] | ||
set y2label "Stress in MPa" | ||
set y2range [-1:2] | ||
set y2tics | ||
plot "graph_1.out" using 2:3 axes x1y1 title "{/Symbol D}T" w l,\ | ||
"graph_2.out" using 2:3 axes x1y2 title "{/Symbol s}_{zz}" w l lt 3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.