Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
finesse
pykat
Commits
2a62fc59
Commit
2a62fc59
authored
Nov 28, 2013
by
Andreas Freise
Browse files
renaming run to out so not to overwrite the run command.
parent
db500256
Changes
1
Hide whitespace changes
Inline
Side-by-side
bin/test_plot.py
View file @
2a62fc59
...
...
@@ -16,6 +16,7 @@ m m2 0.5 0.5 0 n4 n5
s s3 10 1 n5 n6
"""
#kat = finesse.kat(katexe='/Users/adf/work/bin/kat')
kat
=
finesse
.
kat
()
kat
.
parseCommands
(
code
)
...
...
@@ -35,11 +36,11 @@ kat.m2.Rcy = 1000.0
kat
.
maxtem
=
0
run
=
kat
.
run
(
printout
=
0
,
printerr
=
0
)
out
=
kat
.
run
(
printout
=
0
,
printerr
=
0
)
pl
.
figure
()
pl
.
plot
(
run
.
x
,
run
.
y
)
pl
.
xlabel
(
run
.
xlabel
)
pl
.
plot
(
out
.
x
,
out
.
y
)
pl
.
xlabel
(
out
.
xlabel
)
pl
.
ylabel
(
"Intensity [W]"
)
pl
.
legend
(
run
.
ylabels
)
pl
.
legend
(
out
.
ylabels
)
pl
.
show
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment