Quadratic velocity model returns a quadraticly modeled velocity between the top and bottom of the layer as a function of the radius.
|
| VelocityQuadratic () |
| Default constructor. Sets velocity to zero. More...
|
|
| VelocityQuadratic (double a0, double a1, double a2, double rt, double rb, const string &layrnam="", double normradius=1.0) |
| Standard constructor. More...
|
|
| VelocityQuadratic (const VelocityQuadratic &vq) |
| Copy constructor. More...
|
|
| VelocityQuadratic (DataBuffer &buffer) |
| DataBuffer constructor. More...
|
|
virtual | ~VelocityQuadratic () |
| Destructor. More...
|
|
VelocityQuadratic & | operator= (const VelocityQuadratic &vq) |
| Assignment operator. More...
|
|
virtual double | operator() (double r) |
|
virtual double | rAtP (double p) |
|
virtual void | writeNormRadius (ostream &os) const |
| Writes the normalized radius definition to input stream os. More...
|
|
virtual void | writeVelocity (ostream &os) const |
| Writes the velocity definition to the input stream os. More...
|
|
virtual void | toStream (ostream &os, string indent) const |
| Print object data to input stream os. More...
|
|
virtual string | get_class_name () const |
| Virtual function that returns the class name. More...
|
|
virtual int | classSize () const |
| Returns the class size. More...
|
|
virtual bool | isVelocityQuadratic () const |
| Virtual function that returns true for a Quadratic model. More...
|
|
virtual int | bufferSize () const |
| Returns the size of a DataBuffer required to contain all serialized information for a VelocityQuadratic object. More...
|
|
virtual void | serialize (DataBuffer &buffer) |
| Writes the content of the VelocityQuadratic object into the input DataBuffer buffer. More...
|
|
virtual void | deserialize (DataBuffer &buffer) |
| Reads the content of the VelocityQuadratic object from the input DataBuffer buffer. More...
|
|
| VelocityIntegrate () |
| Default constructor. Sets top radius to zero. More...
|
|
| VelocityIntegrate (double rt, double rb, const string &layrnam) |
| Standard constructor. Sets top radius to rt. More...
|
|
| VelocityIntegrate (const VelocityIntegrate &vi) |
| Copy constructor. More...
|
|
virtual | ~VelocityIntegrate () |
| Destructor. More...
|
|
VelocityIntegrate & | operator= (const VelocityIntegrate &vi) |
| Assignment Operator. More...
|
|
virtual double | integrateDistance (double p, double ra, double rb, bool r_open=false) |
| The distance integration function that calculates the ray travel distance from the start of the layer boundary (vlRt) to depth r given the input ray parameter p. This function performs the integration numerically using the integration object vmDistNI and the distance integrand object vmDist. More...
|
|
virtual double | integrateDistance (double p, double ra, bool r_open=false) |
| The distance integration function that calculates the ray travel distance from the start of the layer boundary (vlRt) to depth r given the input ray parameter p. This function performs the integration numerically using the integration object vmDistNI and the distance integrand object vmDist. More...
|
|
virtual double | integrateTime (double p, double ra, double rb) |
| The time (or tau) integration function that calculates the ray travel time from the start of the layer boundary (vlRt) to depth r given the input ray parameter p. This function performs the integration numerically using the integration object vmTauNI and the tau integrand object vmTau. More...
|
|
virtual double | integrateTime (double p, double ra) |
| The time (or tau) integration function that calculates the ray travel time from the start of the layer boundary (vlRt) to depth r given the input ray parameter p. This function performs the integration numerically using the integration object vmTauNI and the tau integrand object vmTau. More...
|
|
void | setIntegTolerance (double tol) |
| Sets the integration tolerance limit for this velocity layer. If the integration objects are not yet instantiated this function will create them before setting their tolerance. More...
|
|
| TPVelocityLayer () |
| Default constructor. Sets top and bottom layer radius to zero. More...
|
|
| TPVelocityLayer (double rt, double rb, const string &layrnam) |
|
| TPVelocityLayer (const TPVelocityLayer &vl) |
| Copy constructor. More...
|
|
virtual | ~TPVelocityLayer () |
| Destructor. More...
|
|
TPVelocityLayer & | operator= (const TPVelocityLayer &vl) |
| Assignment Operator. More...
|
|
void | init () |
| Initializes the velocity layer evaluating vlVt, vlVb, vlPt, and vlPb;. More...
|
|
double | pAtR (double r) |
|
double | integDistance (double p, double r=-1.0) |
| The distance integration function which gives the distance of the ray travel from the surface of the Earth to the ray turning depth as a function of the ray parameter p (slowness). The integration terminates before the turning depth if the radius r is positive. More...
|
|
double | integDistance (double p, double r1, double r2) |
| The distance integration function which gives the distance of the ray travel from radius r1 to radius r2 as a function of the ray parameter p (slowness). The integration terminates at the turning depth if that occurs before reaching r2. More...
|
|
double | integTime (double p, double r=-1.0) |
| The time integration function which gives the time of the ray travel from the surface of the Earth to the ray turning depth as a function of the ray parameter p (slowness). The integration terminates before the turning depth if the radius r is positive. More...
|
|
double | integTime (double p, double r1, double r2) |
| The time integration function which gives the time of the ray travel from radius r1 to radius r2 as a function of the ray parameter p (slowness). The integration terminates at the turning depth if that occurs before reaching r2. More...
|
|
virtual bool | isTimeIntegralTau () const |
| The Default time integral is really Tau function which must be added to p * distance. Override this function to return false if the time integral returns time and not tau. More...
|
|
double | getRt () const |
| Returns the top of the layer radius. More...
|
|
double | getRb () const |
| Returns the bottom of the layer radius. More...
|
|
double | getVt () const |
| Returns the top of the layer velocity. More...
|
|
double | getVb () const |
| Returns the bottom of the layer velocity. More...
|
|
double | getPt () const |
| Returns the top of the layer ray parameter (slowness). More...
|
|
double | getPb () const |
| Returns the bottom of the layer ray parameter (slowness). More...
|
|
double | getTurningRadius () const |
|
double | getTurningVelocity () const |
|
void | setPmin (double pmin) |
| Sets the minimum ray parameter for the layer. If less than getPt() then the top half of the layer is shadowed. More...
|
|
double | getPmin () const |
| Returns the minimum passing ray parameter for the layer. if less than getPt() then the top half of the layer is shadowed. More...
|
|
void | setDistT (double d) |
| Sets the accumulated distance through all layers upto the top of this layer given a ray parameter of vlPt() or vlPmin(), whichever is smaller. More...
|
|
double | getDistT () const |
| Returns the accumulated distance through all layers upto the top of this layer given a ray parameter of vlPt() or vlPmin(), whichever is smaller. More...
|
|
void | setDistB (double d) |
| Sets the accumulated distance through all layers including this one given a ray parameter of vlPb() or vlPmin(), whichever is smaller. More...
|
|
double | getDistB () const |
| Returns the accumulated distance through all layers including this one given a ray parameter of vlPb() or vlPmin(), whichever is smaller. More...
|
|
void | setdDistdPT (double dDdP) |
| Sets the derivative of the distance wrt. the ray parameter at the top of the layer. More...
|
|
double | getdDistdPT () const |
| Returns the derivative of the distance wrt. the ray parameter at the top of the layer. More...
|
|
void | setdDistdPB (double dDdP) |
| Sets the derivative of the distance wrt. the ray parameter at the bottom of the layer. More...
|
|
double | getdDistdPB () const |
| Returns the derivative of the distance wrt. the ray parameter at the bottom of the layer. More...
|
|
void | setLayerType (int lt) |
|
int | getLayerType () const |
|
const string & | getLayerName () const |
| Returns the descriptive layer name. More...
|
|
void | setPhaseTypeP () |
| Sets the layer phase type to "P". More...
|
|
void | setPhaseTypeS () |
| Sets the layer phase type to "S". More...
|
|
void | setPhaseType (const string &phtype) |
| Sets the layer phase type to phtype. More...
|
|
const string & | getPhaseType () const |
| Returns the layer phase type string. More...
|
|
void | setPhaseName (const string &name) |
| Sets the layer default phase name. More...
|
|
const string & | getPhaseName () const |
| Returns the layer default phase name. More...
|
|
void | setPhaseNameUpper (const string &name) |
| Sets the upper phase name if the layer is a retrograde layer. More...
|
|
const string & | getPhaseNameUpper () const |
| Returns the upper phase name if the layer is a retrograde layer. More...
|
|
void | setPhaseNameLower (const string &name) |
| Sets the lower phase name if the layer is a retrograde layer. More...
|
|
const string & | getPhaseNameLower () const |
| Returns the lower phase name if the layer is a retrograde layer. More...
|
|
void | setPhaseNameDiff (const string &name) |
| Sets the upper interface phase name. More...
|
|
const string & | getPhaseNameDiff () const |
| Returns the upper interface phase name if assigned. More...
|
|
void | setPhaseNameDiffLower (const string &name) |
| Sets the lower interface phase name. More...
|
|
const string & | getPhaseNameDiffLower () const |
| Returns the lower interface phase name if assigned. More...
|
|
void | setPhaseDiffDef (bool def) |
| Sets the upper diffracted wave phase for this layer to true even if it has no formal phase name definition. This will default to use the default evaluated names of X::i+ where # is the layer # and X is "P" or "S". More...
|
|
void | setPhaseDiffLowerDef (bool def) |
| Sets the lower diffracted wave phase for this layer to true even if it has no formal phase name definition. This will default to use the default evaluated names of X::i- where # is the layer # and X is "P" or "S". More...
|
|
bool | isPhaseDiffDefined () const |
| Returns true if the upper diffracted phase is defined for this layer. More...
|
|
bool | isPhaseDiffLowerDefined () const |
| Returns true if the lower diffracted phase is defined for this layer. More...
|
|
double | getPCrit () const |
|
double | getDistCrit () const |
|
bool | isSplitLayer () const |
| Returns true if the layer is a retrograde layer. More...
|
|
void | setSplitLayer (double pcrit, double dcrit) |
| Sets the layers retrograde parameters if the layer was found to contain a retrograde minimum. More...
|
|
bool | invalidRay () const |
| Returns true if the last evaluated ray parameter was unable to pass through this layer. More...
|
|
bool | passingRay () const |
| Returns true if the last evaluated ray parameter passed through this layer. More...
|
|
bool | turningRay () const |
| Returns true if the last evaluated ray parameter produced a turning ray in this layer. More...
|
|
string | toString () const |
| Print object data to string. More...
|
|
virtual bool | isVelocityConstant () const |
|
virtual bool | isVelocityPowerLaw () const |
|
virtual bool | isVelocityLinear () const |
|
virtual bool | isVelocityCubic () const |
|
|
void | createNumericObjects (VelocityQuadratic &v) |
| Used to create the distance and tau integrand functions vmDist, and vmTau, and their associated integration objects vmDistNI and vmTauNI. More...
|
|
void | setRay (double p) |
| Sets the ray as invalid, passing, or turning given an input ray parameter p. This function also sets the turning radius and velocity (vlRTurn and vlVTurn). More...
|
|
void | setUpDownRay (double p, double r1, double r2) |
| Sets the upgoing / downgoing flags for an integration between r1 and r2 for the input ray parameter p. If the ray turns between r1 and r2 in the layer, or the ray parameter is larger than the largest ray parameter evaluated at r1 and r2, or the r2 > r1 then the invalid ray flag is set. More...
|
|
TPdDistdr< VelocityQuadratic > * | vmDist |
| The distance integrand object templated on the velocity. More...
|
|
TPdTaudr< VelocityQuadratic > * | vmTau |
| The tau integrand object templated on the velocity. More...
|
|
util::IntegrateFunction< TPdDistdr< VelocityQuadratic > > * | vmDistNI |
| The numerical integration object templated on vmDist. More...
|
|
util::IntegrateFunction< TPdTaudr< VelocityQuadratic > > * | vmTauNI |
| The numerical integration object templated on vmTau. More...
|
|
string | vlLayerName |
| The descriptive name of the velocity layer. More...
|
|
string | vlPhaseType |
| The phase type name ... either "P" or "S". More...
|
|
string | vlPhase |
| The phase name of a ray that turns in the layer. This name is optional and used to define the phase unless overidden by vlPhaseUpper or vlPhaseLower for retrograde layers. More...
|
|
string | vlPhaseUpper |
| The name of the phase for a ray that turns in the top half of a retro-grade layer. This name is optional and only used if assigned to a retrograde layer. More...
|
|
string | vlPhaseLower |
| The name of the phase for a ray that turns in the bottom half of a retro-grade layer. This name is optional and only used if assigned to a retrograde layer. More...
|
|
string | vlPhaseIUpper |
| The name of the diffracted phase for a ray that bottoms in the layer and uses the layers bottom velocity to travel along the layer boundary. This name is optional and only required if the phase is to be supported. More...
|
|
string | vlPhaseILower |
| The name of the diffracted phase of a ray that bottoms in the layer and uses the next layers top velocity to travel along the layer boundary. This name is optional and only required if the phase is to be supported. More...
|
|
int | vlLayerType |
| An integer value that describes the layer type. More...
|
|
bool | vlSplitLayer |
| Boolean flag that is true if the velocity layer is a retrograde layer. More...
|
|
bool | vlInvalidRay |
| Boolean flag that is true if the last distance / time evaluation for this velocity layer was invalid. More...
|
|
bool | vlPassingRay |
| Boolean flag that is true if the last distance / time evaluation for this velocity layer was a passing ray. More...
|
|
bool | vlTurningRay |
| Boolean flag that is true if the last distance / time evaluation for this velocity layer was a turning ray. More...
|
|
bool | vlPhaseUpperIDef |
| Set to true if the upper diffracted phase for this layer is to be evaluated. More...
|
|
bool | vlPhaseLowerIDef |
| Set to true if the lower diffracted phase for this layer is to be evaluated. More...
|
|
double | vlRt |
| The layer top radius. More...
|
|
double | vlRb |
| The layer bottom radius. More...
|
|
double | vlIRt |
| The last integration top radius for this layer. More...
|
|
double | vlIRb |
| The last integration bottom radius for this layer. More...
|
|
double | vlVt |
| The layer top velocity. More...
|
|
double | vlVb |
| The layer bottom velocity. More...
|
|
double | vlPt |
| The layer top ray parameter (vlRt / vlVt). More...
|
|
double | vlPb |
| The layer bottom ray parameter (vlRb / vlVb). More...
|
|
double | vlRTurn |
|
double | vlVTurn |
|
double | vlRLast |
| Contains the last evaluated turning depth (or vlRb). More...
|
|
double | vlDistT |
| The integrated distance to the top of the layer using the top ray parameter (vlPt or vlPmin if the layer is partially shadowed). More...
|
|
double | vlDistB |
| The integrated distance to the bottom of the layer using the bottom ray parameter (vlPb or vlPmin if the layer is partially shadowed). More...
|
|
double | vldDistdP_T |
| The derivative of distance wrt. the ray parameter at the top of the layer. More...
|
|
double | vldDistdP_B |
| The derivative of distance wrt. the ray parameter at the bottom of the layer. More...
|
|
double | vlPmin |
| The minimum allowed valid ray parameter that marks a passing limit in the layer. If vlPmin >= vlPt then all rays can penentrate the layer. If vlPMin < vlPb then the layer is a shadow layer and only passing rays (p < vlPb) can pass. If in between then vlPmin marks the boundary where a valid turning ray is allowed and a bounding shadow region exists above or below vlPmin. More...
|
|
double | vlPCrit |
| The ray parameter that gives the distance minimum of a retrograde layer. If the layer is not retrograde this value is ignored. More...
|
|
double | vlDistCrit |
| The distance to the minimum of the retrograde layer if the layer is retrograde. Otherwise ignored. More...
|
|
static const double | vmIntegTol |
| The default integration tolerance. More...
|
|