[3096] | 1 | MODULE info_PEM_mod |
---|
[3076] | 2 | |
---|
| 3 | implicit none |
---|
| 4 | |
---|
[3349] | 5 | integer :: iPCM, iPEM, nPCM, nPCM_ini ! Data about the chained simulation of PCM/PEM runs |
---|
| 6 | |
---|
[3076] | 7 | !======================================================================= |
---|
| 8 | contains |
---|
| 9 | !======================================================================= |
---|
| 10 | |
---|
[3498] | 11 | SUBROUTINE info_PEM(i_myear_leg,stopPEM,i_myear,n_myear) |
---|
[2886] | 12 | |
---|
[2980] | 13 | !======================================================================= |
---|
| 14 | ! |
---|
[3096] | 15 | ! Purpose: Update the first line of "info_PEM.txt" to count the number of simulated Martian years |
---|
| 16 | ! Write in "info_PEM.txt" the reason why the PEM stopped and the number of simulated years |
---|
[2980] | 17 | ! |
---|
[3039] | 18 | ! Author: RV, JBC |
---|
[2980] | 19 | !======================================================================= |
---|
| 20 | |
---|
[3173] | 21 | use time_evol_mod, only: convert_years, year_bp_ini |
---|
[2886] | 22 | |
---|
[3076] | 23 | implicit none |
---|
[2886] | 24 | |
---|
[3076] | 25 | !----- Arguments |
---|
[3498] | 26 | integer, intent(in) :: stopPEM ! Reason to stop |
---|
| 27 | real, intent(in) :: i_myear_leg ! # of years |
---|
| 28 | real, intent(in) :: i_myear, n_myear ! Current simulated Martian year and maximum number of Martian years to be simulated |
---|
[2886] | 29 | |
---|
[3076] | 30 | !----- Local variables |
---|
[3096] | 31 | logical :: ok |
---|
| 32 | integer :: cstat |
---|
[3512] | 33 | character(10) :: frmt |
---|
| 34 | character(20) :: ich1, ich2, ich3, ich4, fch1, fch2, fch3 |
---|
[2886] | 35 | |
---|
[3076] | 36 | !----- Code |
---|
[3387] | 37 | inquire(file = 'info_PEM.txt',exist = ok) |
---|
[3039] | 38 | if (ok) then |
---|
[3512] | 39 | write(fch1,'(f'//int2str(nb_digits(i_myear) + 5)//'.4)') i_myear |
---|
| 40 | write(fch2,'(f'//int2str(nb_digits(n_myear) + 5)//'.4)') n_myear |
---|
| 41 | write(fch3,'(f6.4)') convert_years ! 4 digits to the right of the decimal point to respect the precision of Martian year in "launch_pem.sh" |
---|
| 42 | write(ich1,'(i0)') iPCM |
---|
| 43 | write(ich2,'(i0)') iPEM + 1 |
---|
| 44 | write(ich3,'(i0)') nPCM |
---|
| 45 | write(ich4,'(i0)') nPCM_ini |
---|
| 46 | call execute_command_line('sed -i "1s/.*/'//trim(fch1)//' '//trim(fch2)//' '//trim(fch3)//' '//trim(ich1)//' '//trim(ich2)//' '//trim(ich3)//' '//trim(ich4)//'/" info_PEM.txt',cmdstat = cstat) |
---|
[3096] | 47 | if (cstat > 0) then |
---|
[3297] | 48 | error stop 'info_PEM: command execution failed!' |
---|
[3096] | 49 | else if (cstat < 0) then |
---|
| 50 | error stop 'info_PEM: command execution not supported!' |
---|
| 51 | endif |
---|
| 52 | open(1,file = 'info_PEM.txt',status = "old",position = "append",action = "write") |
---|
[3173] | 53 | ! Martian date, Number of Martians years done by the PEM run, Number of Martians years done by the chainded simulation, Code of the stopping criterion |
---|
| 54 | ! The conversion ratio from Planetary years to Earth years is given in the header of the file |
---|
[3498] | 55 | write(1,*) year_bp_ini + i_myear, i_myear_leg, i_myear, stopPEM |
---|
[3096] | 56 | close(1) |
---|
[3039] | 57 | else |
---|
[3096] | 58 | error stop 'The file ''info_PEM.txt'' does not exist and cannot be updated!' |
---|
[3039] | 59 | endif |
---|
| 60 | |
---|
[3096] | 61 | END SUBROUTINE info_PEM |
---|
[3039] | 62 | |
---|
[3512] | 63 | !======================================================================= |
---|
| 64 | |
---|
| 65 | FUNCTION int2str(i) RESULT(str) |
---|
| 66 | ! Function to convert an integer into a string |
---|
| 67 | |
---|
| 68 | integer, intent(in) :: i |
---|
| 69 | character(20) :: str |
---|
| 70 | |
---|
| 71 | if (nb_digits(real(i)) > len(str)) error stop 'int2str [info_PEM_mod]: invalid integer for conversion!' |
---|
| 72 | write(str,'(i0)') i |
---|
| 73 | str = trim(adjustl(str)) |
---|
| 74 | |
---|
| 75 | END FUNCTION int2str |
---|
| 76 | |
---|
| 77 | !======================================================================= |
---|
| 78 | |
---|
| 79 | FUNCTION nb_digits(x) RESULT(idigits) |
---|
| 80 | ! Function to give the number of digits for the integer part of a real number |
---|
| 81 | |
---|
| 82 | real, intent(in) :: x |
---|
| 83 | integer :: idigits |
---|
| 84 | |
---|
| 85 | idigits = 1 |
---|
| 86 | ! If x /= 0 then: |
---|
| 87 | if (abs(x) > 1.e-10) idigits = int(log10(abs(x))) + 1 |
---|
| 88 | |
---|
| 89 | END FUNCTION nb_digits |
---|
| 90 | |
---|
[3096] | 91 | END MODULE info_PEM_mod |
---|