Skip to content

Commit d14e37f

Browse files
committed
adds tiso and qmu support to EMC model
1 parent 5a8e5a4 commit d14e37f

File tree

6 files changed

+2035
-660
lines changed

6 files changed

+2035
-660
lines changed

src/meshfem3D/meshfem3D_models.F90

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1776,6 +1776,17 @@ subroutine meshfem3D_models_getatten_val(idoubling,r_prem,theta,phi, &
17761776

17771777
endif
17781778

1779+
#ifdef USE_EMC
1780+
! IRIS EMC model
1781+
! over-imposes Qmu values
1782+
if (EMC_MODEL_QMU) then
1783+
! EMC model w/ 3D Qmu parameterization
1784+
r_used = r_prem ! takes actual position (between CMB and surface)
1785+
call model_EMC_attenuation(r_used,theta,phi,Qmu)
1786+
endif
1787+
#endif
1788+
1789+
17791790
! sponge layer
17801791
if (ABSORB_USING_GLOBAL_SPONGE) then
17811792
! get distance to chunk center

src/meshfem3D/meshfem3D_par.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ module meshfem_models_par
9090
MODEL_3D_MANTLE_PERTUBATIONS,HETEROGEN_3D_MANTLE,ANISOTROPIC_3D_MANTLE,ANISOTROPIC_INNER_CORE, &
9191
ATTENUATION_3D, ATTENUATION_GLL, &
9292
CEM_REQUEST, CEM_ACCEPT, &
93-
EMC_MODEL, &
93+
EMC_MODEL,EMC_MODEL_QMU, &
9494
NX_BATHY,NY_BATHY, &
9595
R_PLANET,R_PLANET_KM,R_DEEPEST_CRUST,REGIONAL_MOHO_MESH
9696

0 commit comments

Comments
 (0)