Ice Sheet System Model  4.18
Code documentation
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | Data Fields
PowerVariogram Class Reference

#include <PowerVariogram.h>

Inheritance diagram for PowerVariogram:
Variogram Object

Public Member Functions

 PowerVariogram ()
 
 PowerVariogram (Options *options)
 
 ~PowerVariogram ()
 
Objectcopy ()
 
void DeepEcho ()
 
void Echo ()
 
int Id ()
 
void Marshall (char **pmarshalled_data, int *pmarshalled_data_size, int marshall_direction)
 
int ObjectEnum ()
 
double Covariance (double deltax, double deltay)
 
double SemiVariogram (double deltax, double deltay)
 
- Public Member Functions inherited from Variogram
virtual ~Variogram ()
 
- Public Member Functions inherited from Object
virtual ~Object ()
 

Data Fields

double nugget
 
double slope
 
double power
 

Detailed Description

Definition at line 11 of file PowerVariogram.h.

Constructor & Destructor Documentation

◆ PowerVariogram() [1/2]

PowerVariogram::PowerVariogram ( )

Definition at line 15 of file PowerVariogram.cpp.

15  {/*{{{*/
16  this->nugget = 0.2;
17  this->slope = 1.;
18  this->power = 1.;
19  return;
20 }

◆ PowerVariogram() [2/2]

PowerVariogram::PowerVariogram ( Options options)

Definition at line 22 of file PowerVariogram.cpp.

22  {/*{{{*/
23 
24  /*Defaults*/
25  this->nugget = 0.2;
26  this->slope = 1.;
27  this->power = 1.;
28 
29  /*Overwrite from options*/
30  if(options->GetOption("nugget")) options->Get(&this->nugget,"nugget");
31  if(options->GetOption("slope")) options->Get(&this->slope,"slope");
32  if(options->GetOption("power")) options->Get(&this->power,"power");
33 
34  /*Checks*/
35  if(power<=0 || power>=2) _error_("power must be betwwen 0 and 2 (0 < power < 2)");
36  if(slope<=0) _error_("slope must be positive");
37 }

◆ ~PowerVariogram()

PowerVariogram::~PowerVariogram ( )

Definition at line 39 of file PowerVariogram.cpp.

39  {/*{{{*/
40  return;
41 }

Member Function Documentation

◆ copy()

Object * PowerVariogram::copy ( void  )
virtual

Implements Object.

Definition at line 45 of file PowerVariogram.cpp.

45  {/*{{{*/
46  return new PowerVariogram(*this);
47 }

◆ DeepEcho()

void PowerVariogram::DeepEcho ( void  )
inlinevirtual

Implements Object.

Definition at line 25 of file PowerVariogram.h.

25 {_error_("Not implemented yet");};

◆ Echo()

void PowerVariogram::Echo ( void  )
virtual

Implements Object.

Definition at line 49 of file PowerVariogram.cpp.

49  {/*{{{*/
50  _printf_("PowerVariogram\n");
51  _printf_(" nugget: " << this->nugget << "\n");
52  _printf_(" slope : " << this->slope << "\n");
53  _printf_(" power : " << this->power << "\n");
54 }

◆ Id()

int PowerVariogram::Id ( void  )
inlinevirtual

Implements Object.

Definition at line 27 of file PowerVariogram.h.

27 {_error_("Not implemented yet");};

◆ Marshall()

void PowerVariogram::Marshall ( char **  pmarshalled_data,
int *  pmarshalled_data_size,
int  marshall_direction 
)
inlinevirtual

Implements Object.

Definition at line 28 of file PowerVariogram.h.

28 { _error_("not implemented yet!"); };

◆ ObjectEnum()

int PowerVariogram::ObjectEnum ( void  )
inlinevirtual

Implements Object.

Definition at line 29 of file PowerVariogram.h.

29 {_error_("Not implemented yet");};

◆ Covariance()

double PowerVariogram::Covariance ( double  deltax,
double  deltay 
)
virtual

Implements Variogram.

Definition at line 58 of file PowerVariogram.cpp.

58  {/*{{{*/
59  /*The covariance can be deduced from the variogram from the following
60  * relationship:
61  * 2 gamma = C(x,x) + C(y,y) -2 C(x,y)
62  * so
63  * C(h) = sill - gamma */
64  double h,cova;
65 
66  /*Calculate length square*/
67  h=sqrt(deltax*deltax + deltay*deltay);
68 
69  /*return covariance*/
70  cova = 9999. - this->slope*pow(h,this->power);
71 
72  return cova;
73 }

◆ SemiVariogram()

double PowerVariogram::SemiVariogram ( double  deltax,
double  deltay 
)
virtual

Implements Variogram.

Definition at line 75 of file PowerVariogram.cpp.

75  {/*{{{*/
76  /*http://en.wikipedia.org/wiki/Variogram*/
77  double h,gamma;
78 
79  /*Calculate length square*/
80  h=sqrt(deltax*deltax + deltay*deltay);
81 
82  /*return semi-variogram*/
83  gamma = this->nugget + this->slope*pow(h,this->power);
84 
85  //if(h>1000) _printf_("gamma = " << gamma << " h=" << h << "\n");
86  return gamma;
87 }

Field Documentation

◆ nugget

double PowerVariogram::nugget

Definition at line 14 of file PowerVariogram.h.

◆ slope

double PowerVariogram::slope

Definition at line 15 of file PowerVariogram.h.

◆ power

double PowerVariogram::power

Definition at line 16 of file PowerVariogram.h.


The documentation for this class was generated from the following files:
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
PowerVariogram::power
double power
Definition: PowerVariogram.h:16
Options::Get
void Get(OptionType *pvalue, const char *name)
Definition: Options.h:21
PowerVariogram::PowerVariogram
PowerVariogram()
Definition: PowerVariogram.cpp:15
Options::GetOption
Option * GetOption(const char *name)
Definition: Options.cpp:67
PowerVariogram::nugget
double nugget
Definition: PowerVariogram.h:14
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
PowerVariogram::slope
double slope
Definition: PowerVariogram.h:15