Just noticed the reference file was not including units in the header

This commit is contained in:
Jorge Gonzalez 2026-03-12 21:55:22 +01:00
commit 8f905637b7

View file

@ -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