[135] | 1 | subroutine setspv |
---|
| 2 | |
---|
| 3 | !================================================================== |
---|
| 4 | ! |
---|
| 5 | ! Purpose |
---|
| 6 | ! ------- |
---|
| 7 | ! Set up spectral intervals, stellar spectrum and Rayleigh |
---|
| 8 | ! opacity in the shortwave. |
---|
| 9 | ! |
---|
| 10 | ! Authors |
---|
| 11 | ! ------- |
---|
| 12 | ! Adapted from setspv in the NASA Ames radiative code by |
---|
| 13 | ! Robin Wordsworth (2009). |
---|
| 14 | ! |
---|
| 15 | ! Called by |
---|
| 16 | ! --------- |
---|
| 17 | ! callcorrk.F |
---|
| 18 | ! |
---|
| 19 | ! Calls |
---|
| 20 | ! ----- |
---|
| 21 | ! ave_stelspec.F |
---|
| 22 | ! |
---|
| 23 | !================================================================== |
---|
| 24 | |
---|
| 25 | use radinc_h, only: L_NSPECTV, corrkdir, banddir |
---|
| 26 | use radcommon_h, only: BWNV,BLAMV,WNOV,DWNV,WAVEV, & |
---|
[484] | 27 | STELLARF,TAURAY |
---|
[374] | 28 | use datafile_mod, only: datadir |
---|
[1397] | 29 | use callkeys_mod, only: Fat1AU,rayleigh |
---|
[135] | 30 | |
---|
| 31 | implicit none |
---|
| 32 | |
---|
| 33 | logical file_ok |
---|
| 34 | |
---|
| 35 | integer N, M, file_entries |
---|
| 36 | |
---|
| 37 | character(len=30) :: temp1 |
---|
[716] | 38 | character(len=200) :: file_id |
---|
| 39 | character(len=200) :: file_path |
---|
[135] | 40 | |
---|
| 41 | real*8 :: lastband(2) |
---|
| 42 | |
---|
| 43 | real*8 STELLAR(L_NSPECTV) |
---|
[989] | 44 | real*8 sum, dummy |
---|
[135] | 45 | |
---|
[789] | 46 | !! used to count lines |
---|
[997] | 47 | integer :: nb |
---|
| 48 | integer :: ierr |
---|
[789] | 49 | |
---|
[135] | 50 | !======================================================================= |
---|
| 51 | ! Set up spectral bands - wavenumber [cm^(-1)]. Go from smaller to |
---|
| 52 | ! larger wavenumbers, the same as in the IR. |
---|
| 53 | |
---|
| 54 | write(temp1,'(i2.2)') L_NSPECTV |
---|
| 55 | file_id='/corrk_data/'//trim(adjustl(banddir))//'/narrowbands_VI.in' |
---|
[374] | 56 | file_path=TRIM(datadir)//TRIM(file_id) |
---|
[135] | 57 | |
---|
| 58 | ! check that the file exists |
---|
| 59 | inquire(FILE=file_path,EXIST=file_ok) |
---|
| 60 | if(.not.file_ok) then |
---|
[374] | 61 | write(*,*)'The file ',TRIM(file_path) |
---|
[135] | 62 | write(*,*)'was not found by setspv.F90, exiting.' |
---|
[374] | 63 | write(*,*)'Check that your path to datagcm:',trim(datadir) |
---|
| 64 | write(*,*)' is correct. You can change it in callphys.def with:' |
---|
| 65 | write(*,*)' datadir = /absolute/path/to/datagcm' |
---|
| 66 | write(*,*)'Also check that the corrkdir you chose in callphys.def exists.' |
---|
[135] | 67 | call abort |
---|
| 68 | endif |
---|
[1315] | 69 | |
---|
| 70 | !$OMP MASTER |
---|
[997] | 71 | nb=0 |
---|
| 72 | ierr=0 |
---|
[789] | 73 | ! check that the file contains the right number of bands |
---|
| 74 | open(131,file=file_path,form='formatted') |
---|
[989] | 75 | read(131,*,iostat=ierr) file_entries |
---|
[789] | 76 | do while (ierr==0) |
---|
[989] | 77 | read(131,*,iostat=ierr) dummy |
---|
[789] | 78 | if (ierr==0) nb=nb+1 |
---|
| 79 | enddo |
---|
[135] | 80 | close(131) |
---|
[989] | 81 | |
---|
[789] | 82 | write(*,*) 'setspv: L_NSPECTV = ',L_NSPECTV, 'in the model ' |
---|
| 83 | write(*,*) ' there are ',nb, 'entries in ',TRIM(file_path) |
---|
| 84 | if(nb.ne.L_NSPECTV) then |
---|
| 85 | write(*,*) 'MISMATCH !! I stop here' |
---|
[135] | 86 | call abort |
---|
| 87 | endif |
---|
| 88 | |
---|
| 89 | ! load and display the data |
---|
| 90 | open(111,file=file_path,form='formatted') |
---|
| 91 | read(111,*) |
---|
| 92 | do M=1,L_NSPECTV-1 |
---|
| 93 | read(111,*) BWNV(M) |
---|
| 94 | end do |
---|
| 95 | read(111,*) lastband |
---|
| 96 | close(111) |
---|
| 97 | BWNV(L_NSPECTV) =lastband(1) |
---|
| 98 | BWNV(L_NSPECTV+1)=lastband(2) |
---|
[1315] | 99 | !$OMP END MASTER |
---|
| 100 | !$OMP BARRIER |
---|
[135] | 101 | |
---|
[374] | 102 | print*,'setspv: VI band limits:' |
---|
[135] | 103 | do M=1,L_NSPECTV+1 |
---|
| 104 | print*,m,'-->',BWNV(M),' cm^-1' |
---|
| 105 | end do |
---|
| 106 | print*,' ' |
---|
| 107 | |
---|
| 108 | ! Set up mean wavenumbers and wavenumber deltas. Units of |
---|
| 109 | ! wavenumbers is cm^(-1); units of wavelengths is microns. |
---|
| 110 | |
---|
| 111 | do M=1,L_NSPECTV |
---|
| 112 | WNOV(M) = 0.5*(BWNV(M+1)+BWNV(M)) |
---|
| 113 | DWNV(M) = BWNV(M+1)-BWNV(M) |
---|
| 114 | WAVEV(M) = 1.0E+4/WNOV(M) |
---|
| 115 | BLAMV(M) = 0.01/BWNV(M) |
---|
| 116 | end do |
---|
| 117 | BLAMV(M) = 0.01/BWNV(M) ! wavelength in METERS for aerosol stuff |
---|
| 118 | ! note M=L_NSPECTV+1 after loop due to Fortran bizarreness |
---|
| 119 | |
---|
| 120 | !======================================================================= |
---|
| 121 | ! Set up stellar spectrum |
---|
| 122 | |
---|
[374] | 123 | write(*,*)'setspv: Interpolating stellar spectrum from the hires data...' |
---|
[253] | 124 | call ave_stelspec(STELLAR) |
---|
[135] | 125 | |
---|
| 126 | ! Sum the stellar flux, and write out the result. |
---|
| 127 | sum = 0.0 |
---|
| 128 | do N=1,L_NSPECTV |
---|
| 129 | STELLARF(N) = STELLAR(N) * Fat1AU |
---|
| 130 | sum = sum+STELLARF(N) |
---|
| 131 | end do |
---|
[374] | 132 | write(6,'("setspv: Stellar flux at 1 AU = ",f7.2," W m-2")') sum |
---|
[135] | 133 | print*,' ' |
---|
| 134 | |
---|
[253] | 135 | |
---|
[135] | 136 | !======================================================================= |
---|
| 137 | ! Set up the wavelength independent part of the Rayleigh scattering. |
---|
| 138 | ! The pressure dependent part will be computed elsewhere (OPTCV). |
---|
| 139 | ! WAVEV is in microns. There is no Rayleigh scattering in the IR. |
---|
| 140 | |
---|
| 141 | if(rayleigh) then |
---|
| 142 | call calc_rayleigh |
---|
| 143 | else |
---|
[374] | 144 | print*,'setspv: No Rayleigh scattering, check for NaN in output!' |
---|
[135] | 145 | do N=1,L_NSPECTV |
---|
| 146 | TAURAY(N) = 1E-16 |
---|
| 147 | end do |
---|
| 148 | endif |
---|
| 149 | |
---|
| 150 | RETURN |
---|
| 151 | END subroutine setspv |
---|