Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
E
EELS2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Karl-Michael Schindler
EELS2
Commits
8310a93b
Commit
8310a93b
authored
1 year ago
by
kamischi
Browse files
Options
Downloads
Patches
Plain Diff
make output so it matches
parent
c2711b1c
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/f90/eels-boson.f90
+7
-1
7 additions, 1 deletion
source/f90/eels-boson.f90
source/f90/eels.f90
+4
-4
4 additions, 4 deletions
source/f90/eels.f90
with
11 additions
and
5 deletions
source/f90/eels-boson.f90
+
7
−
1
View file @
8310a93b
...
@@ -142,6 +142,10 @@ program eels_boson
...
@@ -142,6 +142,10 @@ program eels_boson
nw
=
1
+
int
((
wmax
-
wmin
)
/
dw
)
nw
=
1
+
int
((
wmax
-
wmin
)
/
dw
)
allocate
(
wn_array
(
nw
),
f
(
nw
))
allocate
(
wn_array
(
nw
),
f
(
nw
))
write
(
*
,
*
)
'length: '
,
len
(
comment
(
1
))
write
(
*
,
*
)
'length: '
,
comment
(
1
)
write
(
*
,
*
)
'length: '
,
len
(
comment
(
2
))
write
(
*
,
*
)
'length: '
,
comment
(
2
)
call
doeels
(
e0
,
theta
,
phia
,
phib
,
wmin
,
wmax
,
dw
,
comment
,
size
(
comment
),
&
call
doeels
(
e0
,
theta
,
phia
,
phib
,
wmin
,
wmax
,
dw
,
comment
,
size
(
comment
),
&
layers
,
neps
,
nper
,
name
,
size
(
name
),
thick
,
epsinf
,
nos
,
osc
,
size
(
osc
,
2
),&
layers
,
neps
,
nper
,
name
,
size
(
name
),
thick
,
epsinf
,
nos
,
osc
,
size
(
osc
,
2
),&
contrl
,
mode
,
wn_array
,
f
,
size
(
wn_array
))
contrl
,
mode
,
wn_array
,
f
,
size
(
wn_array
))
...
@@ -176,8 +180,10 @@ program eels_boson
...
@@ -176,8 +180,10 @@ program eels_boson
call
doboson
(
t
,
width
,
gauss
,
asym
,
emin
,
emax
,
&
call
doboson
(
t
,
width
,
gauss
,
asym
,
emin
,
emax
,
&
wmin
,
wmax
,
nw
,
f
,
xout
,
yout
,
nout
)
wmin
,
wmax
,
nw
,
f
,
xout
,
yout
,
nout
)
comment
(
2
)
=
comment
(
1
)
open
(
unit
=
14
,
file
=
bosou_name
)
open
(
unit
=
14
,
file
=
bosou_name
)
write
(
14
,
'(a, a, f6.1, a, f5.2)'
)
comment
(
1
),
'T ='
,
t
,
' GAUSS ='
,
gauss
write
(
14
,
'(a, f6.2, a, f5.1, a, f5.2, a, f5.2, a, f6.1, a, f5.2)'
)
&
'e0 ='
,
e0
,
' theta ='
,
theta
,
' phia ='
,
phia
,
' phib ='
,
phib
,
' T ='
,
t
,
' GAUSS ='
,
gauss
write
(
14
,
*
)
comment
(
2
)
write
(
14
,
*
)
comment
(
2
)
do
i
=
1
,
nout
do
i
=
1
,
nout
write
(
14
,
'(2e15.7)'
)
xout
(
i
),
yout
(
i
)
write
(
14
,
'(2e15.7)'
)
xout
(
i
),
yout
(
i
)
...
...
This diff is collapsed.
Click to expand it.
source/f90/eels.f90
+
4
−
4
View file @
8310a93b
...
@@ -134,9 +134,10 @@ program eels
...
@@ -134,9 +134,10 @@ program eels
contrl
,
mode
,
wn_array
,
f
,
size
(
wn_array
))
contrl
,
mode
,
wn_array
,
f
,
size
(
wn_array
))
open
(
unit
=
12
,
file
=
'eelsou'
)
open
(
unit
=
12
,
file
=
'eelsou'
)
write
(
12
,
207
)
e0
,
theta
,
phia
,
phib
,
comment
(
1
)
write
(
12
,
207
)
e0
,
theta
,
phia
,
phib
write
(
12
,
'(a72)'
)
comment
(
1
)
do
i
=
1
,
nw
do
i
=
1
,
nw
write
(
12
,
211
)
wn_array
(
i
),
f
(
i
)
write
(
12
,
'(2e15.7)'
)
wn_array
(
i
),
f
(
i
)
enddo
enddo
close
(
unit
=
12
)
close
(
unit
=
12
)
...
@@ -151,6 +152,5 @@ program eels
...
@@ -151,6 +152,5 @@ program eels
106
format
(
45x
,
'wlo , wp'
,
5x
,
'q'
,
7x
,
'gam/wlo'
)
106
format
(
45x
,
'wlo , wp'
,
5x
,
'q'
,
7x
,
'gam/wlo'
)
107
format
(
45x
,
28
(
'-'
))
107
format
(
45x
,
28
(
'-'
))
108
format
(
41x
,
f12.4
,
f10.4
,
f9.4
)
108
format
(
41x
,
f12.4
,
f10.4
,
f9.4
)
207
format
(
'e0 ='
,
f6.2
,
' theta ='
,
f5.1
,
' phia ='
,
f5.2
,
' phib ='
,
f5.2
/
a72
)
207
format
(
'e0 ='
,
f6.2
,
' theta ='
,
f5.1
,
' phia ='
,
f5.2
,
' phib ='
,
f5.2
)
211
format
(
2e15.7
)
end
program
eels
end
program
eels
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment