|
| 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...
|
|
virtual double | operator() (double r) |
|
void | init () |
| Initializes the velocity layer evaluating vlVt, vlVb, vlPt, and vlPb;. More...
|
|
virtual void | writeNormRadius (ostream &os) const |
| Used to write the normalized radius parameter (if defined) to a CLR output stream os. More...
|
|
virtual void | writeVelocity (ostream &os) const |
| Used to write the CLR formatted velocity profile to the input output stream os. More...
|
|
virtual double | rAtP (double p) |
|
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 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 | isVelocityConstant () const |
|
virtual bool | isVelocityPowerLaw () const |
|
virtual bool | isVelocityLinear () const |
|
virtual bool | isVelocityQuadratic () const |
|
virtual bool | isVelocityCubic () const |
|
virtual int | bufferSize () const |
|
virtual void | serialize (DataBuffer &buffer) |
|
virtual void | deserialize (DataBuffer &buffer) |
|
|
TPdDistdr< V > * | vmDist |
| The distance integrand object templated on the velocity. More...
|
|
TPdTaudr< V > * | vmTau |
| The tau integrand object templated on the velocity. More...
|
|
util::IntegrateFunction< TPdDistdr< V > > * | vmDistNI |
| The numerical integration object templated on vmDist. More...
|
|
util::IntegrateFunction< TPdTaudr< V > > * | 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...
|
|
template<class V>
class taup::VelocityIntegrate< V >
The VelocityIntegrate<VL> template object is used to exclusively numerically integrate the distance and time functions if analytic versions were not provided in the superclass defintion (VL). A template is used to avoid virtual pointer traversal during the numerical integration process which can evaluate the integrand many hundreds of times per integration. This object creates the numerical integrand templates
TPdDistdr<V>* vmDist;
TPdTaudr<V>* vmTau;
which are used by the integration objects to integrate the spherically defined distance as a function of the layer velocity and input ray parameter. This object also creates the integration objects
IntegrateFunction<TPdDistdr<V> >* vmDistNI;
IntegrateFunction<TPdTaudr<V> >* vmTauNI;
which are used to perform the numericaly integration. This object also defines the numerical versions of the abstract functions
virtual double integrateDistance(double p, double r,
bool r_open = false);
virtual double integrateTime(double p, double r);
Which can be overridden by any super class definitions if an analytic solution exists.