Ice Sheet System Model  4.18
Code documentation
Public Member Functions | Data Fields | Friends
bamg::Metric Class Reference

#include <Metric.h>

Public Member Functions

 Metric ()
 
 Metric (const EigenMetric &)
 
 Metric (double a)
 
 Metric (double a, double b, double c)
 
 Metric (double a, const Metric ma, double b, const Metric mb)
 
 Metric (const double a[3], const Metric m0, const Metric m1, const Metric m2)
 
void Echo ()
 
double det () const
 
int IntersectWith (const Metric &M2)
 
void Box (double &hx, double &hy) const
 
R2 Orthogonal (const R2 x)
 
R2 Orthogonal (const I2 x)
 
double Length (double Ax, double Ay) const
 
Metric operator* (double c) const
 
Metric operator/ (double c) const
 
 operator D2xD2 ()
 
double operator() (R2 x, R2 y) const
 

Data Fields

double a11
 
double a21
 
double a22
 

Friends

class EigenMetric
 

Detailed Description

Definition at line 17 of file Metric.h.

Constructor & Destructor Documentation

◆ Metric() [1/6]

bamg::Metric::Metric ( )
inline

Definition at line 28 of file Metric.h.

28 :a11(0),a21(0),a22(0){};

◆ Metric() [2/6]

bamg::Metric::Metric ( const EigenMetric M)
inline

Definition at line 115 of file Metric.h.

115  {
116  double v00=M.vx*M.vx;
117  double v11=M.vy*M.vy;
118  double v01=M.vx*M.vy;
119  a11=v00*M.lambda1+v11*M.lambda2;
120  a21=v01*(M.lambda1-M.lambda2);
121  a22=v00*M.lambda2+v11*M.lambda1;
122  }

◆ Metric() [3/6]

bamg::Metric::Metric ( double  a)

Definition at line 15 of file Metric.cpp.

15  {/*{{{*/
16 
17  /*Isotropic metric for a length of a as unit*/
18  this->a11 = 1./(a*a);
19  this->a21 = 0.;
20  this->a22 = 1./(a*a);
21 
22  }/*}}}*/

◆ Metric() [4/6]

bamg::Metric::Metric ( double  a,
double  b,
double  c 
)

Definition at line 23 of file Metric.cpp.

23  {/*{{{*/
24 
25  this->a11 = a11_in;
26  this->a21 = a21_in;
27  this->a22 = a22_in;
28 
29  }/*}}}*/

◆ Metric() [5/6]

bamg::Metric::Metric ( double  a,
const Metric  ma,
double  b,
const Metric  mb 
)

Definition at line 59 of file Metric.cpp.

59  { /*{{{*/
60 
61  /*Compute metric (linear combination of ma and mb)*/
62  Metric mab(a*ma.a11+b*mb.a11,a*ma.a21+b*mb.a21,a*ma.a22+b*mb.a22);
63 
64  /*Get Eigen values and vectors*/
65  EigenMetric vab(mab);
66  double v1x = + vab.vx;
67  double v1y = + vab.vy;
68  double v2x = - vab.vy;
69  double v2y = + vab.vx;
70 
71  /*Modify eigen values (a+b=1)*/
72  double h1 = a/ma.Length(v1x,v1y) + b/mb.Length(v1x,v1y);
73  double h2 = a/ma.Length(v2x,v2y) + b/mb.Length(v2x,v2y);
74  vab.lambda1 = 1./(h1*h1);
75  vab.lambda2 = 1./(h2*h2);
76 
77  /*Build metric from vab*/
78  double v00=vab.vx*vab.vx;
79  double v11=vab.vy*vab.vy;
80  double v01=vab.vx*vab.vy;
81  this->a11=v00*vab.lambda1+v11*vab.lambda2;
82  this->a21=v01*(vab.lambda1-vab.lambda2);
83  this->a22=v00*vab.lambda2+v11*vab.lambda1;
84  }

◆ Metric() [6/6]

bamg::Metric::Metric ( const double  a[3],
const Metric  m0,
const Metric  m1,
const Metric  m2 
)

Definition at line 30 of file Metric.cpp.

30  {/*{{{*/
31 
32  /*Create metric using 3 inputs*/
33  Metric mab(a[0]*m0.a11 + a[1]*m1.a11 + a[2]*m2.a11,
34  a[0]*m0.a21 + a[1]*m1.a21 + a[2]*m2.a21,
35  a[0]*m0.a22 + a[1]*m1.a22 + a[2]*m2.a22);
36 
37  /*Convert to eigen metric*/
38  EigenMetric vab(mab);
39  double v1x = + vab.vx;
40  double v1y = + vab.vy;
41  double v2x = - vab.vy;
42  double v2y = + vab.vx;
43 
44  double h1=a[0] / m0.Length(v1x,v1y) + a[1] / m1.Length(v1x,v1y) + a[2] / m2.Length(v1x,v1y);
45  double h2=a[0] / m0.Length(v2x,v2y) + a[1] / m1.Length(v2x,v2y) + a[2] / m2.Length(v2x,v2y);
46 
47  vab.lambda1 = 1. / (h1*h1);
48  vab.lambda2 = 1. / (h2*h2);
49 
50  /*Build metric from vab*/
51  double v00=vab.vx*vab.vx;
52  double v11=vab.vy*vab.vy;
53  double v01=vab.vx*vab.vy;
54  this->a11=v00*vab.lambda1+v11*vab.lambda2;
55  this->a21=v01*(vab.lambda1-vab.lambda2);
56  this->a22=v00*vab.lambda2+v11*vab.lambda1;
57 
58  } /*}}}*/

Member Function Documentation

◆ Echo()

void bamg::Metric::Echo ( void  )

Definition at line 91 of file Metric.cpp.

91  {/*{{{*/
92 
93  _printf_("Metric:\n");
94  _printf_(" [a11 a21 a22]: [" << a11 << " " << a21 << " " << a22 << "]\n");
95 
96  return;
97  }

◆ det()

double bamg::Metric::det ( ) const

Definition at line 88 of file Metric.cpp.

88  {/*{{{*/
89  return a11*a22-a21*a21;
90  } /*}}}*/

◆ IntersectWith()

int bamg::Metric::IntersectWith ( const Metric M2)

Definition at line 99 of file Metric.cpp.

99  {/*{{{*/
100  /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Metric.cpp/IntersectWith)*/
101 
102  /*Get a new metric from an existing metric (M1=this)
103  * and a new metric given in input M2 using a
104  * Simultaneous Matrix Reduction:
105  * If M1 and M2 are 2 metrics, we must build N=M1^-1 M2 (Alauzet2003 p16)
106  * the eigen vectors of N form a matrix P
107  * The new metric M = M1 inter M2 is then given by:
108  *
109  * -T [ max(lambda1, mu1) 0 ] -1
110  * M = P [ ] P
111  * [ 0 max(lambda2, mu2)]
112  *
113  * where lambdai and mui can be computed using Rayleigh formula:
114  * lambdai = vi' M1 vi
115  * with vi eigen vectors of N (columns of P)
116  */
117 
118  int change=0;
119  Metric &M1=*this;
120  D2xD2 P;
121 
122  //Get P, eigen vectors of N=inv(M1) M2
123  SimultaneousMatrixReduction(*this,M2,P);
124 
125  //extract the eigen vectors of P (columns)
126  R2 v1(P.x.x,P.y.x);
127  R2 v2(P.x.y,P.y.y);
128 
129  //compute lambdai mui
130  double lambda1=M1(v1,v1);
131  double lambda2=M1(v2,v2);
132  double mu1=M2(v1,v1);
133  double mu2=M2(v2,v2);
134 
135  //check where any change needs to be done on M1
136  if ( lambda1 < mu1 ) change=1,lambda1=mu1;
137  if ( lambda2 < mu2 ) change=1,lambda2=mu2;
138 
139  //update M1 if necessary
140  if (change) {
141  D2xD2 invP(P.inv());
142  D2xD2 D(lambda1,0,0,lambda2);
143  D2xD2 M(invP.t()*D*invP);
144  a11=M.x.x;
145  a21=0.5*(M.x.y+M.y.x);
146  a22=M.y.y;
147  }
148  return change;
149  }

◆ Box()

void bamg::Metric::Box ( double &  hx,
double &  hy 
) const
inline

Definition at line 123 of file Metric.h.

123  {
124  double d= a11*a22-a21*a21;
125  hx = sqrt(a22/d);
126  hy = sqrt(a11/d);
127  }

◆ Orthogonal() [1/2]

R2 bamg::Metric::Orthogonal ( const R2  x)
inline

Definition at line 41 of file Metric.h.

41 { return R2(-(a21*x.x+a22*x.y),a11*x.x+a21*x.y); }

◆ Orthogonal() [2/2]

R2 bamg::Metric::Orthogonal ( const I2  x)
inline

Definition at line 42 of file Metric.h.

42 { return R2(-(a21*x.x+a22*x.y),a11*x.x+a21*x.y); }

◆ Length()

double bamg::Metric::Length ( double  Ax,
double  Ay 
) const

Definition at line 151 of file Metric.cpp.

151  {/*{{{*/
152  /*Length of A in the current metric*/
153  return sqrt(Ax*Ax*a11+2*Ax*Ay*a21+Ay*Ay*a22);
154  }

◆ operator*()

Metric bamg::Metric::operator* ( double  c) const
inline

Definition at line 46 of file Metric.h.

46 {double c2=c*c;return Metric(a11*c2,a21*c2,a22*c2);}

◆ operator/()

Metric bamg::Metric::operator/ ( double  c) const
inline

Definition at line 47 of file Metric.h.

47 {double c2=1/(c*c);return Metric(a11*c2,a21*c2,a22*c2);}

◆ operator D2xD2()

bamg::Metric::operator D2xD2 ( )
inline

Definition at line 48 of file Metric.h.

48 { return D2xD2(a11,a21,a21,a22);}

◆ operator()()

double bamg::Metric::operator() ( R2  x,
R2  y 
) const
inline

Definition at line 50 of file Metric.h.

50 { return x.x*y.x*a11+(x.x*x.y+x.y*y.x)*a21+x.y*y.y*a22;};

Friends And Related Function Documentation

◆ EigenMetric

friend class EigenMetric
friend

Definition at line 25 of file Metric.h.

Field Documentation

◆ a11

double bamg::Metric::a11

Definition at line 22 of file Metric.h.

◆ a21

double bamg::Metric::a21

Definition at line 22 of file Metric.h.

◆ a22

double bamg::Metric::a22

Definition at line 22 of file Metric.h.


The documentation for this class was generated from the following files:
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
bamg::SimultaneousMatrixReduction
void SimultaneousMatrixReduction(Metric M1, Metric M2, D2xD2 &V)
Definition: Metric.cpp:225
bamg::Metric::a11
double a11
Definition: Metric.h:22
bamg::Metric::EigenMetric
friend class EigenMetric
Definition: Metric.h:25
bamg::R2
P2< double, double > R2
Definition: typedefs.h:12
bamg::Metric::a22
double a22
Definition: Metric.h:22
bamg::D2xD2
P2xP2< double, double > D2xD2
Definition: Metric.h:12
bamg::Metric::a21
double a21
Definition: Metric.h:22
bamg::Metric::Metric
Metric()
Definition: Metric.h:28