Ice Sheet System Model  4.18
Code documentation
Metric.h
Go to the documentation of this file.
1 #ifndef _METRIC_H
2 #define _METRIC_H
3 
4 #include "./include.h"
5 #include "../shared/shared.h"
6 #include "R2.h"
7 #include <math.h>
8 
9 namespace bamg {
10 
13 
14  class Metric;
15  class EigenMetric;
16 
17  class Metric{
18 
19  public:
20 
21  //fields
22  double a11,a21,a22;
23 
24  //friends
25  friend class EigenMetric;
26 
27  //functions
28  Metric():a11(0),a21(0),a22(0){};
29  Metric(const EigenMetric&);
30  Metric(double a);
31  Metric(double a,double b,double c);
32  Metric(double a,const Metric ma,double b,const Metric mb);
33  Metric(const double a[3],const Metric m0,const Metric m1,const Metric m2 );
34  void Echo();
35  double det() const;
36  int IntersectWith(const Metric& M2);
37  inline void Box(double &hx,double &hy) const;
38 
39  /*The following functions must remain the the header file because it is called before Metric
40  * is compiled by other classes*/
41  R2 Orthogonal(const R2 x){ return R2(-(a21*x.x+a22*x.y),a11*x.x+a21*x.y); }
42  R2 Orthogonal(const I2 x){ return R2(-(a21*x.x+a22*x.y),a11*x.x+a21*x.y); }
43  double Length(double Ax,double Ay) const;
44 
45  //operators
46  Metric operator*(double c) const {double c2=c*c;return Metric(a11*c2,a21*c2,a22*c2);}
47  Metric operator/(double c) const {double c2=1/(c*c);return Metric(a11*c2,a21*c2,a22*c2);}
48  operator D2xD2(){ return D2xD2(a11,a21,a21,a22);}
49  //double operator()(R2 x) const { return sqrt(x.x*x.x*a11+2*x.x*x.y*a21+x.y*x.y*a22);}; // length of x in metric sqrt(<Mx,x>) FIXME: replace by Length!
50  double operator()(R2 x,R2 y) const { return x.x*y.x*a11+(x.x*x.y+x.y*y.x)*a21+x.y*y.y*a22;};
51 
52  };
53 
54  class EigenMetric{
55  public:
56 
57  //fields
58  double lambda1,lambda2;
59  double vx,vy;
60 
61  //friends
62  friend class Metric;
63 
64  //functions
65  EigenMetric(const Metric& );
66  EigenMetric(double r1,double r2,const D2& vp1);
67  void Echo();
68  void Abs();
69  void pow(double p);
70  void Min(double a);
71  void Max(double a);
72  void Minh(double h);
73  void Maxh(double h);
74  double hmin() const;
75  double hmax() const;
76  double lmax() const;
77  double lmin() const;
78  double Aniso2() const;
79  inline void BoundAniso2(const double coef);
80 
81  //operators
82  void operator *=(double coef){ lambda1*=coef;lambda2*=coef;}
83  };
84 
86  friend double LengthInterpole(const Metric& Ma,const Metric& Mb, R2 AB);
87  friend double abscisseInterpole(const Metric& Ma ,const Metric& Mb, R2 ,double s,int optim);
88  public:
89  int opt;
90  double lab;
91  double L[1024],S[1024];
92  };
93 
94  extern SaveMetricInterpole LastMetricInterpole; // for optimization
95  //Functions
97  double LengthInterpole(const Metric& Ma,const Metric& Mb, R2 AB);
98  double abscisseInterpole(const Metric& Ma,const Metric& Mb, R2 AB,double s,int optim=0);
99 
100  //inlines
101  inline void EigenMetric::BoundAniso2(const double coef){
102  if (coef<=1.00000000001){
103  if (lambda1 < lambda2)
105  else
107  }
108  else{ //TO BE CHECKED
109  if (lambda1 > lambda2)
111  else
113  }
114  }
115  inline Metric::Metric(const EigenMetric& M) {
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  }
123  inline void Metric::Box(double &hx,double &hy) const {
124  double d= a11*a22-a21*a21;
125  hx = sqrt(a22/d);
126  hy = sqrt(a11/d);
127  }
128  inline double LengthInterpole(double la,double lb) {
129  return ( Abs(la - lb) < 1.0e-6*Max3(la,lb,1.0e-20) ) ? (la+lb)/2 : la*lb*log(la/lb)/(la-lb);
130  }
131  inline double abscisseInterpole(double la,double lb,double lab,double s){
132  return ( Abs(la - lb) <1.0e-6*Max3(la,lb,1.0e-20)) ? s : (exp(s*lab*(la-lb)/(la*lb))-1)*lb/(la-lb);
133  }
134 }
135 #endif
bamg::SaveMetricInterpole
Definition: Metric.h:85
bamg::LastMetricInterpole
SaveMetricInterpole LastMetricInterpole
Definition: Metric.cpp:12
bamg::EigenMetric::lmin
double lmin() const
Definition: EigenMetric.cpp:124
bamg::Metric::Orthogonal
R2 Orthogonal(const I2 x)
Definition: Metric.h:42
bamg::EigenMetric::Aniso2
double Aniso2() const
Definition: EigenMetric.cpp:101
bamg::Metric::operator()
double operator()(R2 x, R2 y) const
Definition: Metric.h:50
bamg::EigenMetric::Echo
void Echo()
Definition: EigenMetric.cpp:104
bamg
Definition: AdjacentTriangle.cpp:9
bamg::Metric::Box
void Box(double &hx, double &hy) const
Definition: Metric.h:123
bamg::SimultaneousMatrixReduction
void SimultaneousMatrixReduction(Metric M1, Metric M2, D2xD2 &V)
Definition: Metric.cpp:225
bamg::abscisseInterpole
double abscisseInterpole(const Metric &Ma, const Metric &Mb, R2 AB, double s, int optim)
Definition: Metric.cpp:327
bamg::EigenMetric::operator*=
void operator*=(double coef)
Definition: Metric.h:82
bamg::Metric::operator/
Metric operator/(double c) const
Definition: Metric.h:47
bamg::P2xP2
Definition: R2.h:40
bamg::SaveMetricInterpole::lab
double lab
Definition: Metric.h:90
bamg::EigenMetric::pow
void pow(double p)
Definition: EigenMetric.cpp:141
bamg::SaveMetricInterpole::abscisseInterpole
friend double abscisseInterpole(const Metric &Ma, const Metric &Mb, R2, double s, int optim)
Definition: Metric.cpp:327
bamg::Max3
T Max3(const T &a, const T &b, const T &c)
Definition: extrema.h:8
bamg::SaveMetricInterpole::L
double L[1024]
Definition: Metric.h:91
bamg::EigenMetric::lambda2
double lambda2
Definition: Metric.h:58
bamg::Metric::Orthogonal
R2 Orthogonal(const R2 x)
Definition: Metric.h:41
bamg::EigenMetric::Minh
void Minh(double h)
Definition: EigenMetric.cpp:134
bamg::EigenMetric::hmax
double hmax() const
Definition: EigenMetric.cpp:118
bamg::Max
T Max(const T &a, const T &b)
Definition: extrema.h:7
bamg::EigenMetric::Maxh
void Maxh(double h)
Definition: EigenMetric.cpp:137
bamg::EigenMetric::Abs
void Abs()
Definition: EigenMetric.cpp:98
bamg::Metric
Definition: Metric.h:17
bamg::EigenMetric::BoundAniso2
void BoundAniso2(const double coef)
Definition: Metric.h:101
bamg::LengthInterpole
double LengthInterpole(const Metric &Ma, const Metric &Mb, R2 AB)
Definition: Metric.cpp:158
bamg::EigenMetric::EigenMetric
EigenMetric(const Metric &)
Definition: EigenMetric.cpp:12
bamg::EigenMetric::lambda1
double lambda1
Definition: Metric.h:58
bamg::SaveMetricInterpole::opt
int opt
Definition: Metric.h:89
bamg::Metric::a11
double a11
Definition: Metric.h:22
bamg::EigenMetric::hmin
double hmin() const
Definition: EigenMetric.cpp:115
bamg::EigenMetric::vx
double vx
Definition: Metric.h:59
bamg::Metric::Echo
void Echo()
Definition: Metric.cpp:91
bamg::EigenMetric::vy
double vy
Definition: Metric.h:59
bamg::Metric::Length
double Length(double Ax, double Ay) const
Definition: Metric.cpp:151
include.h
prototypes for include.h
bamg::R2
P2< double, double > R2
Definition: typedefs.h:12
bamg::P2::x
R x
Definition: R2.h:15
bamg::D2
P2< double, double > D2
Definition: Metric.h:11
bamg::EigenMetric
Definition: Metric.h:54
bamg::EigenMetric::Min
void Min(double a)
Definition: EigenMetric.cpp:127
bamg::P2::y
R y
Definition: R2.h:15
bamg::SaveMetricInterpole::S
double S[1024]
Definition: Metric.h:91
bamg::EigenMetric::Max
void Max(double a)
Definition: EigenMetric.cpp:130
bamg::P2< double, double >
bamg::Abs
T Abs(const T &a)
Definition: Abs.h:5
bamg::Metric::det
double det() const
Definition: Metric.cpp:88
bamg::Metric::a22
double a22
Definition: Metric.h:22
bamg::D2xD2
P2xP2< double, double > D2xD2
Definition: Metric.h:12
bamg::Metric::IntersectWith
int IntersectWith(const Metric &M2)
Definition: Metric.cpp:99
bamg::Min
T Min(const T &a, const T &b)
Definition: extrema.h:6
bamg::Metric::a21
double a21
Definition: Metric.h:22
R2.h
bamg::Metric::operator*
Metric operator*(double c) const
Definition: Metric.h:46
bamg::SaveMetricInterpole::LengthInterpole
friend double LengthInterpole(const Metric &Ma, const Metric &Mb, R2 AB)
Definition: Metric.cpp:158
bamg::EigenMetric::lmax
double lmax() const
Definition: EigenMetric.cpp:121
bamg::Metric::Metric
Metric()
Definition: Metric.h:28