Changeset 22036
- Timestamp:
- 09/05/17 08:54:07 (8 years ago)
- Location:
- issm/trunk-jpl/src/c/modules/FourierLoveCorex
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/FourierLoveCorex/love_numbers.f90
r22035 r22036 248 248 ! fluid_tscale=-575.502 / (deg+91.1765) -0.176471 ! this formula sets fluid time scale = 1e6 kyr at degree 2, 1e5 kyr at degree 20 and 1e3 kyr at degree 90, which allows no error growth and still the fluid number as the benchmark at all degree (tested up to degmax=147) 249 249 !print*,fluid_tscale 250 ! freq=c omplex(0.d0,1.d0)*2.d0*pi*(10.d0**(fluid_tscale)/cst) ! empiric time period that changes according to harmonic degree to ensure getting fluid response without crazy error growing for high degree250 ! freq=cmplx(0.d0,1.d0)*2.d0*pi*(10.d0**(fluid_tscale)/cst) ! empiric time period that changes according to harmonic degree to ensure getting fluid response without crazy error growing for high degree 251 251 ! it is meant to approximate the theoretical freq=0.d0 that should be assessed for fft 252 252 !elseif (fr <= nfreq/2+1) then 253 ! freq=c omplex(0.d0,1.d0)*(dble(fr-1)/T)*2.d0*pi253 ! freq=cmplx(0.d0,1.d0)*(dble(fr-1)/T)*2.d0*pi 254 254 !else 255 ! freq=c omplex(0.d0,1.d0)*(-dble(nfreq+1-fr)/T)*2.d0*pi255 ! freq=cmplx(0.d0,1.d0)*(-dble(nfreq+1-fr)/T)*2.d0*pi 256 256 !end if 257 257 258 freq=c omplex(0.d0,frequencies(fr))258 freq=cmplx(0.d0,frequencies(fr)) 259 259 !print*,fr,freq 260 260 … … 262 262 !freq=dble(fr)/T 263 263 !-- Elastic Love number calculation 264 !freq=2.d0*pi/(1e4*cst)*c omplex(0.d0,1.d0)264 !freq=2.d0*pi/(1e4*cst)*cmplx(0.d0,1.d0) 265 265 266 266 !if (deg==2) then ! for rotationnal feedback -
issm/trunk-jpl/src/c/modules/FourierLoveCorex/lovenb_sub.f90
r22035 r22036 42 42 43 43 if ((log10(1.d0/ra**int(dble(deg)/10.d0)))<-250.d0) then 44 valini=1.d-300!*c omplex(1.d0,1.d0)44 valini=1.d-300!*cmplx(1.d0,1.d0) 45 45 else 46 valini= 1.d0!*c omplex(1.d0,1.d0)46 valini= 1.d0!*cmplx(1.d0,1.d0) 47 47 endif 48 48 -
issm/trunk-jpl/src/c/modules/FourierLoveCorex/model.f90
r22004 r22036 104 104 !x=rc/ra 105 105 !write(101,*), 106 !call earth_nlayers_viscoelas(x-epsdb,ro1,c omplex(la,0.d0),complex(mu,0d0),g,solid)106 !call earth_nlayers_viscoelas(x-epsdb,ro1,cmplx(la,0.d0),cmplx(mu,0d0),g,solid) 107 107 !write(101,*), 'ICB, g = ',g 108 108 !write(101,*), 'ICB, ro(Inner Core) = ', ro1 109 !call earth_nlayers_viscoelas(x,ro2,c omplex(la,0.d0),complex(mu,0d0),g,solid)109 !call earth_nlayers_viscoelas(x,ro2,cmplx(la,0.d0),cmplx(mu,0d0),g,solid) 110 110 !write(101,*), 'ICB, g = ',g 111 111 !write(101,*), 'ICB, ro(Outer Core) = ', ro2 … … 115 115 !x=rb/ra 116 116 !write(101,*), 117 !call earth_nlayers_viscoelas(x-epsdb,ro1,c omplex(la,0.d0),complex(mu,0d0),g,solid)117 !call earth_nlayers_viscoelas(x-epsdb,ro1,cmplx(la,0.d0),cmplx(mu,0d0),g,solid) 118 118 !write(101,*), 'CMB, g = ',g 119 119 !write(101,*), 'CMB, ro(Outer Core) = ', ro1 120 !call earth_nlayers_viscoelas(x,ro2,c omplex(la,0.d0),complex(mu,0d0),g,solid)120 !call earth_nlayers_viscoelas(x,ro2,cmplx(la,0.d0),cmplx(mu,0d0),g,solid) 121 121 !write(101,*), 'CMB, g = ',g 122 122 !write(101,*), 'CMB, ro(Mantle) = ', ro2
Note:
See TracChangeset
for help on using the changeset viewer.