[cig-commits] [commit] devel, master: adds predefined 1D and 3D model options to generate_databases (5cdb277)

cig_noreply at geodynamics.org cig_noreply at geodynamics.org
Wed Jun 18 16:49:17 PDT 2014


Repository : https://github.com/geodynamics/specfem3d

On branches: devel,master
Link       : https://github.com/geodynamics/specfem3d/compare/6026e367984905ab133865f62fa6293b343759b9...47f703851338234f96397e7da9fbff63d8178b8a

>---------------------------------------------------------------

commit 5cdb2774afdbce7580112503663b1dde53820190
Author: Daniel Peter <peterda at ethz.ch>
Date:   Mon May 7 11:03:03 2012 +0000

    adds predefined 1D and 3D model options to generate_databases


>---------------------------------------------------------------

5cdb2774afdbce7580112503663b1dde53820190
 BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/constants.h     | 12 ++++++------
 .../ACOUSTIC/in_data_files/Par_file                  | 20 ++++++++++++++++----
 BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/constants.h      | 12 ++++++------
 .../ELASTIC/in_data_files/Par_file                   | 20 ++++++++++++++++----
 Mount_StHelens/in_data_files/Par_file                | 18 +++++++++++++++---
 homogeneous_halfspace/in_data_files/Par_file         | 18 +++++++++++++++---
 homogeneous_poroelastic/in_data_files/Par_file       | 17 +++++++++++++++--
 layered_halfspace/in_data_files/Par_file             | 18 +++++++++++++++---
 meshfem3D_examples/many_interfaces/Par_file          | 18 +++++++++++++++---
 meshfem3D_examples/simple_model/Par_file             | 18 +++++++++++++++---
 meshfem3D_examples/socal1D/Par_file                  | 18 +++++++++++++++---
 meshfem3D_examples/socal1D/example_utm/Par_file_utm  | 18 +++++++++++++++---
 noise_tomography/in_data_files/Par_file_step1        | 16 ++++++++++++++--
 noise_tomography/in_data_files/Par_file_step2        | 16 ++++++++++++++--
 noise_tomography/in_data_files/Par_file_step3        | 16 ++++++++++++++--
 tomographic_model/in_data_files/Par_file             | 18 +++++++++++++++---
 waterlayered_halfspace/in_data_files/Par_file        | 17 ++++++++++++++---
 17 files changed, 235 insertions(+), 55 deletions(-)

diff --git a/BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/constants.h b/BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/constants.h
index 600d599..161aa9a 100644
--- a/BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/constants.h
+++ b/BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/constants.h
@@ -302,14 +302,14 @@
   integer, parameter :: NUM_ITER = 4
 
 ! size of topography and bathymetry file for Southern California
-  integer, parameter :: NX_TOPO_SOCAL = 1401,NY_TOPO_SOCAL = 1001
-  double precision, parameter :: ORIG_LAT_TOPO_SOCAL = 32.d0
-  double precision, parameter :: ORIG_LONG_TOPO_SOCAL = -121.d0
-  double precision, parameter :: DEGREES_PER_CELL_TOPO_SOCAL = 5.d0 / 1000.d0
-  character(len=100), parameter :: TOPO_FILE_SOCAL = 'DATA/la_topography/topo_bathy_final.dat'
+  integer, parameter :: NX_TOPO_FILE = 1401,NY_TOPO_FILE = 1001
+  double precision, parameter :: ORIG_LAT_TOPO = 32.d0
+  double precision, parameter :: ORIG_LONG_TOPO = -121.d0
+  double precision, parameter :: DEGREES_PER_CELL_TOPO = 5.d0 / 1000.d0
+  character(len=100), parameter :: TOPO_FILE = 'DATA/la_topography/topo_bathy_final.dat'
 
 ! ! size of topography and bathymetry file for Piero Basini's model
-!   integer, parameter :: NX_TOPO = 787, NY_TOPO = 793
+!   integer, parameter :: NX_TOPO_FILE = 787, NY_TOPO_FILE = 793
 !   double precision, parameter :: ORIG_LAT_TOPO = -102352.d0
 !   double precision, parameter :: ORIG_LONG_TOPO = 729806.d0
 ! ! for Piero Basini's model this is the resolution in meters of the topo file
diff --git a/BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/in_data_files/Par_file b/BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/in_data_files/Par_file
index d4b2b03..379214b 100644
--- a/BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/in_data_files/Par_file
+++ b/BENCHMARK_CLAERBOUT_ADJOINT/ACOUSTIC/in_data_files/Par_file
@@ -1,8 +1,11 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE = 3 
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
-SAVE_FORWARD = .false. 
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 3
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
+SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
 UTM_PROJECTION_ZONE             = 11
@@ -15,6 +18,15 @@ NPROC                           = 4
 NSTEP                           = 10000 
 DT                              = 0.001
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/constants.h b/BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/constants.h
index 600d599..6d57943 100644
--- a/BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/constants.h
+++ b/BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/constants.h
@@ -302,14 +302,14 @@
   integer, parameter :: NUM_ITER = 4
 
 ! size of topography and bathymetry file for Southern California
-  integer, parameter :: NX_TOPO_SOCAL = 1401,NY_TOPO_SOCAL = 1001
-  double precision, parameter :: ORIG_LAT_TOPO_SOCAL = 32.d0
-  double precision, parameter :: ORIG_LONG_TOPO_SOCAL = -121.d0
-  double precision, parameter :: DEGREES_PER_CELL_TOPO_SOCAL = 5.d0 / 1000.d0
-  character(len=100), parameter :: TOPO_FILE_SOCAL = 'DATA/la_topography/topo_bathy_final.dat'
+  integer, parameter :: NX_TOPO_FILE = 1401,NY_TOPO_FILE = 1001
+  double precision, parameter :: ORIG_LAT_TOPO = 32.d0
+  double precision, parameter :: ORIG_LONG_TOPO = -121.d0
+  double precision, parameter :: DEGREES_PER_CELL_TOPO = 5.d0 / 1000.d0
+  character(len=256), parameter :: TOPO_FILE = 'DATA/la_topography/topo_bathy_final.dat'
 
 ! ! size of topography and bathymetry file for Piero Basini's model
-!   integer, parameter :: NX_TOPO = 787, NY_TOPO = 793
+!   integer, parameter :: NX_TOPO_FILE = 787, NY_TOPO_FILE = 793
 !   double precision, parameter :: ORIG_LAT_TOPO = -102352.d0
 !   double precision, parameter :: ORIG_LONG_TOPO = 729806.d0
 ! ! for Piero Basini's model this is the resolution in meters of the topo file
diff --git a/BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/in_data_files/Par_file b/BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/in_data_files/Par_file
index 5d25f0c..6bec6ea 100644
--- a/BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/in_data_files/Par_file
+++ b/BENCHMARK_CLAERBOUT_ADJOINT/ELASTIC/in_data_files/Par_file
@@ -1,8 +1,11 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE = 3 
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
-SAVE_FORWARD = .false. 
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 3
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
+SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
 UTM_PROJECTION_ZONE             = 11
@@ -15,6 +18,15 @@ NPROC                           = 4
 NSTEP                           = 4000 
 DT                              = 0.0006
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/Mount_StHelens/in_data_files/Par_file b/Mount_StHelens/in_data_files/Par_file
index d8efc57..c07c992 100644
--- a/Mount_StHelens/in_data_files/Par_file
+++ b/Mount_StHelens/in_data_files/Par_file
@@ -1,7 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -15,6 +18,15 @@ NPROC                           = 4
 NSTEP                           = 2500
 DT                              = 0.005d0
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/homogeneous_halfspace/in_data_files/Par_file b/homogeneous_halfspace/in_data_files/Par_file
index 16d7de0..5c51e62 100644
--- a/homogeneous_halfspace/in_data_files/Par_file
+++ b/homogeneous_halfspace/in_data_files/Par_file
@@ -1,7 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -15,6 +18,15 @@ NPROC                           = 4
 NSTEP                           = 1000
 DT                              = 0.05
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/homogeneous_poroelastic/in_data_files/Par_file b/homogeneous_poroelastic/in_data_files/Par_file
index be9664d..99c6459 100644
--- a/homogeneous_poroelastic/in_data_files/Par_file
+++ b/homogeneous_poroelastic/in_data_files/Par_file
@@ -1,6 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -14,6 +18,15 @@ NPROC                           = 16
 NSTEP                           = 4000 #4000
 DT                              = 3.d-5 #0.5d-3
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/layered_halfspace/in_data_files/Par_file b/layered_halfspace/in_data_files/Par_file
index d134a14..f0ed671 100644
--- a/layered_halfspace/in_data_files/Par_file
+++ b/layered_halfspace/in_data_files/Par_file
@@ -1,7 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -15,6 +18,15 @@ NPROC                           = 4
 NSTEP                           = 3000
 DT                              = 0.0075
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/meshfem3D_examples/many_interfaces/Par_file b/meshfem3D_examples/many_interfaces/Par_file
index c4b17ea..0b835e7 100644
--- a/meshfem3D_examples/many_interfaces/Par_file
+++ b/meshfem3D_examples/many_interfaces/Par_file
@@ -1,7 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -15,6 +18,15 @@ NPROC                           = 81
 NSTEP                           = 2000
 DT                              = 0.03
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/meshfem3D_examples/simple_model/Par_file b/meshfem3D_examples/simple_model/Par_file
index c97b11c..979d0ef 100644
--- a/meshfem3D_examples/simple_model/Par_file
+++ b/meshfem3D_examples/simple_model/Par_file
@@ -1,7 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -15,6 +18,15 @@ NPROC                           = 4
 NSTEP                           = 2000
 DT                              = 0.03
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/meshfem3D_examples/socal1D/Par_file b/meshfem3D_examples/socal1D/Par_file
index 1b89c1f..67f8780 100644
--- a/meshfem3D_examples/socal1D/Par_file
+++ b/meshfem3D_examples/socal1D/Par_file
@@ -1,7 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -15,6 +18,15 @@ NPROC                           = 1
 NSTEP                           = 840
 DT                              = 0.012
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/meshfem3D_examples/socal1D/example_utm/Par_file_utm b/meshfem3D_examples/socal1D/example_utm/Par_file_utm
index 6fbdfc9..89ab078 100644
--- a/meshfem3D_examples/socal1D/example_utm/Par_file_utm
+++ b/meshfem3D_examples/socal1D/example_utm/Par_file_utm
@@ -1,7 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -15,6 +18,15 @@ NPROC                           = 1
 NSTEP                           = 840
 DT                              = 0.012
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/noise_tomography/in_data_files/Par_file_step1 b/noise_tomography/in_data_files/Par_file_step1
index 0ac1d19..ca10746 100644
--- a/noise_tomography/in_data_files/Par_file_step1
+++ b/noise_tomography/in_data_files/Par_file_step1
@@ -1,6 +1,9 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
 NOISE_TOMOGRAPHY                = 1
 SAVE_FORWARD                    = .true.
 
@@ -16,6 +19,15 @@ NSTEP                           = 1500
 DT                              = 0.05d0
 NTSTEP_BETWEEN_READ_ADJSRC      = 0
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/noise_tomography/in_data_files/Par_file_step2 b/noise_tomography/in_data_files/Par_file_step2
index f83e2e2..a331517 100644
--- a/noise_tomography/in_data_files/Par_file_step2
+++ b/noise_tomography/in_data_files/Par_file_step2
@@ -1,6 +1,9 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
 NOISE_TOMOGRAPHY                = 2
 SAVE_FORWARD                    = .true.
 
@@ -16,6 +19,15 @@ NSTEP                           = 1500
 DT                              = 0.05d0
 NTSTEP_BETWEEN_READ_ADJSRC      = 0
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/noise_tomography/in_data_files/Par_file_step3 b/noise_tomography/in_data_files/Par_file_step3
index b3ca956..d4e6df9 100644
--- a/noise_tomography/in_data_files/Par_file_step3
+++ b/noise_tomography/in_data_files/Par_file_step3
@@ -1,6 +1,9 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 3   # 1 = forward, 2 = adjoint, 3 = both simultaneously
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 3   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
 NOISE_TOMOGRAPHY                = 3   
 SAVE_FORWARD                    = .false.
 
@@ -16,6 +19,15 @@ NSTEP                           = 1500
 DT                              = 0.05d0
 NTSTEP_BETWEEN_READ_ADJSRC      = 0
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/tomographic_model/in_data_files/Par_file b/tomographic_model/in_data_files/Par_file
index 44c4041..aac959d 100644
--- a/tomographic_model/in_data_files/Par_file
+++ b/tomographic_model/in_data_files/Par_file
@@ -1,7 +1,10 @@
-
+# simulation input parameters
+#
 # forward or adjoint simulation
-SIMULATION_TYPE                 = 1   # 1 = forward, 2 = adjoint, 3 = both simultaneously
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 1 = forward, 2 = adjoint, 3 = both simultaneously
+SIMULATION_TYPE                 = 1   
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -15,6 +18,15 @@ NPROC                           = 4
 NSTEP                           = 4000
 DT                              = 0.01
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.
diff --git a/waterlayered_halfspace/in_data_files/Par_file b/waterlayered_halfspace/in_data_files/Par_file
index 3b0c813..6f33718 100644
--- a/waterlayered_halfspace/in_data_files/Par_file
+++ b/waterlayered_halfspace/in_data_files/Par_file
@@ -1,8 +1,10 @@
-
-# forward or adjoint simulation:
+# simulation input parameters
+#
+# forward or adjoint simulation
 # 1 = forward, 2 = adjoint, 3 = both simultaneously
 SIMULATION_TYPE                 = 1   
-NOISE_TOMOGRAPHY                = 0   # 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+# 0 = earthquake simulation,  1/2/3 = three steps in noise simulation
+NOISE_TOMOGRAPHY                = 0   
 SAVE_FORWARD                    = .false.
 
 # UTM projection parameters
@@ -16,6 +18,15 @@ NPROC                           = 4
 NSTEP                           = 4500
 DT                              = 0.005
 
+# models:
+# available options are:
+#   default (model parameters described by mesh properties)
+# 1D models available are: 
+#   1d_prem,1d_socal,1d_cascadia
+# 3D models available are: 
+#   aniso,external,gll,salton_trough,tomo
+MODEL                           = default
+
 # parameters describing the model
 OCEANS                          = .false.
 TOPOGRAPHY                      = .false.



More information about the CIG-COMMITS mailing list