SPEED
MAKE_MECH_PROP_CASE_014.f90
Go to the documentation of this file.
1! Copyright (C) 2012 The SPEED FOUNDATION
2! Author: Ilario Mazzieri
3!
4! This file is part of SPEED.
5!
6! SPEED is free software; you can redistribute it and/or modify it
7! under the terms of the GNU Affero General Public License as
8! published by the Free Software Foundation, either version 3 of the
9! License, or (at your option) any later version.
10!
11! SPEED is distributed in the hope that it will be useful, but
12! WITHOUT ANY WARRANTY; without even the implied warranty of
13! MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14! Affero General Public License for more details.
15!
16! You should have received a copy of the GNU Affero General Public License
17! along with SPEED. If not, see <http://www.gnu.org/licenses/>.
18
19
21
22
23 subroutine make_mech_prop_case_014(rho, lambda, mu, gamma, qs, qp, & !outputs
24 xs, ys, zs, Depth, zs_all,&
25 vs30, thickness, sub_tag_all)
26
27 real*8, intent(out) :: rho, lambda, mu, gamma, qs, qp
28 real*8, intent(in) :: xs, ys, zs, depth, zs_all,&
29 vs30, thickness
30 integer*4 :: sub_tag_all
31 real*8 :: ni, vs, vp, depth_real
32
33 rho = 0.d0;
34 lambda = 0.d0;
35 mu = 0.d0;
36 gamma = 0.d0;
37 qs = 0.d0;
38 qp = 0.d0
39
40 if ((depth .ge. 0.0d0) .and. (zs_all .ge. 0.0d0)) then
41
42 ! + MATERIAL INSIDE THE ALLUVIAL BASIN
43 if (depth .le. 100.0d0) then
44 vs = 300.d0
45 vp = 520.d0
46 rho = 2200.d0
47 lambda = rho * (vp**2 - 2.d0*vs**2)
48 mu = rho * vs**2
49 gamma = (3.1415*(3.d0/3.d0))/(30.d0)
50
51 elseif (depth .le. 200.0d0) then
52 vs = 400.d0
53 vp = 700.d0
54 rho = 2300.d0
55 lambda = rho * (vp**2 - 2.d0*vs**2)
56 mu = rho * vs**2
57 gamma = (3.1415*(2.d0/3.d0))/(40.d0)
58
59 elseif (depth .le. 500.0d0) then
60 vs = 500.d0
61 vp = 850.d0
62 rho = 2400.d0
63 lambda = rho * (vp**2 - 2.d0*vs**2)
64 mu = rho * vs**2
65 gamma = (3.1415*(2.d0/3.d0))/(50.d0)
66
67 else
68 vs = 1000.d0
69 vp = 1700.d0
70 rho = 2400.d0
71 lambda = rho * (vp**2 - 2.d0*vs**2)
72 mu = rho * vs**2
73 gamma = (3.1415*(2.d0/3.d0))/(100.d0)
74 endif
75
76 else
77 ! + MATERIAL INSIDE THE BEDROCK (Vs=1500m/s)
78 vs = 1500.d0
79 vp = 2800.d0
80 rho = 2400.d0
81 lambda = rho * (vp**2 - 2.d0*vs**2)
82 mu = rho * vs**2
83 gamma = (3.1415*(3.d0/3.d0))/(150.d0)
84 endif
85
86
87 end subroutine make_mech_prop_case_014
subroutine make_mech_prop_case_014(rho, lambda, mu, gamma, qs, qp, xs, ys, zs, depth, zs_all, vs30, thickness, sub_tag_all)
Makes not-honoring technique.