Difference between revisions of "CVM-S4.26 Proposed Final Model"
Line 10: | Line 10: | ||
Option 2.2.3 is currently the proposed idea for the final CVM-S4.26 model. | Option 2.2.3 is currently the proposed idea for the final CVM-S4.26 model. | ||
+ | |||
+ | == Plots == | ||
+ | |||
+ | Plots of [http://hypocenter.usc.edu/research/plots/new/cvms426_223/ option 2.2.3] | ||
== Definition of Terms == | == Definition of Terms == |
Revision as of 20:44, 31 October 2013
Contents
Description
The CVM-S4.26 proposed final model corresponds to version 2.2.3 of our available model options. It is an effort to integrate Po's perturbations while still honoring the CVM-S4 GTL. The desired effect is that we recover the CVM-S GTL while smoothly adding in positive and negative perturbations.
Presently, we have three possible options for incorporating the GTL:
2.2.1. Applying negative perturbations only if outside the basin and always applying positive perturbations even if inside the basin - to the starting model.
2.2.2. Same as 2.2.1. but disregard positive perturbations inside the basin - to the starting model.
2.2.3. Apply positive perturbations to the base model within the basin. Apply both positive and negative perturbations to the starting model outside of the basin.
Option 2.2.3 is currently the proposed idea for the final CVM-S4.26 model.
Plots
Plots of option 2.2.3
Definition of Terms
- Base Model - CVM-S4 material properties as delivered by CVM-S4
- Starting Model for Inversion - CVM-S4 material properties with min Vs=1000m/s
- Final Model with Inversion - CVM-S4 with Perturbations
Algorithm for 2.2.3
The proposed final model incorporates the 26th iteration in the following manner:
BASE Vp, Vs, Rho = CVM-S4 material properties
STARTING Vp, Vs, Rho = Po and En-Jui's starting model from which all the iterations were derived
FINAL Vp, Vs, Rho = Returned material properties
PERTURBATION Vp, Vs, Rho = Po and En-Jui's 26th iteration of perturbations
IF BASE Vs < 1000m/s THEN
IF BASE Vs + PERTURBATION Vs < BASE Vs THEN
FINAL Vp = BASE Vp
FINAL Vs = BASE Vs
FINAL Rho = BASE Rho
ELSE
FINAL Vp = BASE Vp + PERTURBATION Vp
FINAL Vs = BASE Vs + PERTURBATION Vs
FINAL Rho = BASE Rho
IF FINAL Vp / FINAL Vs < 1.45 THEN
FINAL Vp = FINAL Vs * 1.45
END IF
END IF
ELSE
FINAL Vp = STARTING Vp + PERTURBATION Vp
FINAL Vs = STARTING Vs + PERTURBATION Vs
FINAL Rho = STARTING Rho
END IF
RETURN FINAL Vp, Vs, Rho
Starting Model Algorithm
The starting model is the one that Po and En-Jui used to begin their inversions. It is as follows:
LET CORNER Vp = 3000
LET CORNER Vs = 1500
LET CORNER Rho = 2300
LET MINIMUM Vp = 2000
LET MINIMUM Vs = 1000
LET MINIMUM Rho = 2000
LET BASE_MINIMUM Vs = 100
LET BASE_MINIMUM Vp = 283.637
LET BASE_MINIMUM Rho = 1909.786
LET STARTING Vp = BASE Vp
LET STARTING Vs = BASE Vs
LET STARTING Rho = BASE Rho
IF STARTING Vs < BASE_MINIMUM Vs THEN
STARTING Vs = BASE_MINIMUM Vs
END IF
IF STARTING Vp < BASE_MINIMUM Vp THEN
STARTING Vp = BASE_MINIMUM Vp
END IF
IF STARTING Rho < BASE_MINIMUM Rho THEN
STARTING Rho = BASE_MINIMUM Rho
END IF
IF STARTING Vp < CORNER Vp THEN
STARTING Vp = (CORNER Vp * (MINIMUM Vp - BASE_MINIMUM Vp) + STARTING Vp * (CORNER Vp - MINIMUM Vp)) / (CORNER Vp - BASE_MINIMUM Vp)
END IF
IF STARTING Vs < CORNER Vs THEN
STARTING Vs = (CORNER Vs * (MINIMUM Vs - BASE_MINIMUM Vs) + STARTING Vs * (CORNER Vs - MINIMUM Vs)) / (CORNER Vs - BASE_MINIMUM Vs)
END IF
IF STARTING Rho < CORNER Rho THEN
STARTING Rho = (CORNER Rho * (MINIMUM Rho - BASE_MINIMUM Rho) + STARTING Rho * (CORNER Rho - MINIMUM Rho)) / (CORNER Rho - BASE_MINIMUM Rho)
END IF
IF STARTING Vp / STARTING Vs < 1.45 THEN
STARTING Vs = STARTING Vp / 1.45
END IF
RETURN STARTING Vp, Vs, and Rho