sorry,
I try to write a file.dat whit a lot of columns (11) with different format (1.4e-12, 10...)
when i try ro write the code i use the following fortran command:
WRITE(7,*) id,t,a,e,inc,capom,omega,capm,mass,radius
but each line in the original file is now write in multiply lines.
From:
1222221 0.0 10.0 0.0 3.1415927 0.0 0.0 3.7828348 9.0E-9 4.0E-6
to:
1222221 0.000000000000000E+000 10.0000000000000 0.000000000000000E+000 0.000000000000000E+000 0.000000000000000E+000 0.000000000000000E+000 1.67102026939392 9.000000189551827E-010 3.999999989900971E-006
How can i resolve this?
Thanks a lot for your help!