Changeset 22036


Ignore:
Timestamp:
09/05/17 08:54:07 (8 years ago)
Author:
bdef
Message:

BUG:replacing -complex- comands by -cmplx- to avoid lib link issue

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  
    248248  ! 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)
    249249   !print*,fluid_tscale
    250   ! freq=complex(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
     250  ! 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
    251251! it is meant to approximate the theoretical freq=0.d0 that should be assessed for fft
    252252  !elseif (fr <= nfreq/2+1) then
    253   ! freq=complex(0.d0,1.d0)*(dble(fr-1)/T)*2.d0*pi
     253  ! freq=cmplx(0.d0,1.d0)*(dble(fr-1)/T)*2.d0*pi
    254254  !else
    255   ! freq=complex(0.d0,1.d0)*(-dble(nfreq+1-fr)/T)*2.d0*pi
     255  ! freq=cmplx(0.d0,1.d0)*(-dble(nfreq+1-fr)/T)*2.d0*pi
    256256  !end if
    257257 
    258   freq=complex(0.d0,frequencies(fr))
     258  freq=cmplx(0.d0,frequencies(fr))
    259259  !print*,fr,freq
    260260
     
    262262  !freq=dble(fr)/T
    263263  !--  Elastic Love number calculation
    264   !freq=2.d0*pi/(1e4*cst)*complex(0.d0,1.d0)
     264  !freq=2.d0*pi/(1e4*cst)*cmplx(0.d0,1.d0)
    265265
    266266   !if (deg==2) then ! for rotationnal feedback
  • issm/trunk-jpl/src/c/modules/FourierLoveCorex/lovenb_sub.f90

    r22035 r22036  
    4242       
    4343   if ((log10(1.d0/ra**int(dble(deg)/10.d0)))<-250.d0) then
    44         valini=1.d-300!*complex(1.d0,1.d0)
     44        valini=1.d-300!*cmplx(1.d0,1.d0)
    4545   else
    46         valini= 1.d0!*complex(1.d0,1.d0)
     46        valini= 1.d0!*cmplx(1.d0,1.d0)
    4747   endif
    4848
  • issm/trunk-jpl/src/c/modules/FourierLoveCorex/model.f90

    r22004 r22036  
    104104  !x=rc/ra
    105105  !write(101,*),
    106   !call earth_nlayers_viscoelas(x-epsdb,ro1,complex(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)
    107107  !write(101,*), 'ICB, g = ',g
    108108  !write(101,*), 'ICB, ro(Inner Core) = ', ro1
    109   !call earth_nlayers_viscoelas(x,ro2,complex(la,0.d0),complex(mu,0d0),g,solid)
     109  !call earth_nlayers_viscoelas(x,ro2,cmplx(la,0.d0),cmplx(mu,0d0),g,solid)
    110110  !write(101,*), 'ICB, g = ',g
    111111  !write(101,*), 'ICB, ro(Outer Core) = ', ro2
     
    115115  !x=rb/ra
    116116  !write(101,*),
    117   !call earth_nlayers_viscoelas(x-epsdb,ro1,complex(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)
    118118  !write(101,*), 'CMB, g = ',g
    119119  !write(101,*), 'CMB, ro(Outer Core) = ', ro1
    120   !call earth_nlayers_viscoelas(x,ro2,complex(la,0.d0),complex(mu,0d0),g,solid)
     120  !call earth_nlayers_viscoelas(x,ro2,cmplx(la,0.d0),cmplx(mu,0d0),g,solid)
    121121  !write(101,*), 'CMB, g = ',g
    122122  !write(101,*), 'CMB, ro(Mantle) = ', ro2
Note: See TracChangeset for help on using the changeset viewer.