Just noticed the reference file was not including units in the header
This commit is contained in:
parent
e54c86a952
commit
8f905637b7
1 changed files with 14 additions and 2 deletions
|
|
@ -285,8 +285,20 @@ MODULE moduleOutput
|
|||
implicit none
|
||||
|
||||
open (fileID_reference, file=generateFilePath('reference.csv'))
|
||||
write(fileID_reference, "(*("//fmtColStr//"))") '"L_ref"','"v_ref"','"ti_ref"','"Vol_ref"','"EF_ref"','"Volt_ref"','"B_ref"'
|
||||
write(fileID_reference, "(*("//fmtColReal//"))") L_ref, v_ref, ti_ref, Vol_ref, EF_ref, Volt_ref, B_ref
|
||||
write(fileID_reference, "(*("//fmtColStr//"))") '"L_ref (m)"', &
|
||||
'"v_ref (m s^-1)"', &
|
||||
'"ti_ref (s)"', &
|
||||
'"Vol_ref (m^3)"', &
|
||||
'"EF_ref (V m^-1)"', &
|
||||
'"Volt_ref (V)"', &
|
||||
'"B_ref (T)"'
|
||||
write(fileID_reference, "(*("//fmtColReal//"))") L_ref, &
|
||||
v_ref, &
|
||||
ti_ref, &
|
||||
Vol_ref, &
|
||||
EF_ref, &
|
||||
Volt_ref, &
|
||||
B_ref
|
||||
close(fileID_reference)
|
||||
|
||||
end subroutine writeReference
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue