Ice Sheet System Model  4.18
Code documentation
Data Fields | Friends
bamg::SaveMetricInterpole Class Reference

#include <Metric.h>

Data Fields

int opt
 
double lab
 
double L [1024]
 
double S [1024]
 

Friends

double LengthInterpole (const Metric &Ma, const Metric &Mb, R2 AB)
 
double abscisseInterpole (const Metric &Ma, const Metric &Mb, R2, double s, int optim)
 

Detailed Description

Definition at line 85 of file Metric.h.

Friends And Related Function Documentation

◆ LengthInterpole

double LengthInterpole ( const Metric Ma,
const Metric Mb,
R2  AB 
)
friend

Definition at line 158 of file Metric.cpp.

158  {/*{{{*/
159  /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Metric.cpp/LengthInterpole)*/
160 
161  double k=1./2.;
162  int level=0;
163  static int kkk=0;
164  static Metric Ms1[32],Ms2[32];
165  static double lMs1[32],lMs2[32];
166  static double K[32];
167  double l=0,sss=0;
168  Ms1[level]=Ma;
169  Ms2[level]=Mb;
170  double sa = Ma.Length(AB.x,AB.y);
171  double sb = Mb.Length(AB.x,AB.y);
172  lMs1[level]=sa;
173  lMs2[level]=sb;
174  K[level]=k;
175  level++;
176  int i=0;
178  double sstop = 0.1; // Max(0.6,(sa+sb)/5000);
179  while (level) {
180  level--;
181  Metric M1=Ms1[level];
182  Metric M2=Ms2[level];
183  k=K[level];
184  double s1= lMs1[level];
185  double s2= lMs2[level];
186 
187  double s= (s1+s2)*k;
188  if( s > sstop && level < 30 && i < 500-level ) {
189  Metric Mi(0.5,M1,0.5,M2);
190  double si = Mi.Length(AB.x,AB.y);
191  if( Abs((s1+s2)-(si+si)) > s1*0.001)
192  {
193  k=k/2;
194  // we begin by the end to walk in the correct direction from a to b
195  // due to the stack
196  Ms1[level]=Mi;
197  Ms2[level]=M2;
198  lMs1[level]=si;
199  lMs2[level]=s2;
200  K[level]=k;
201  level++;
202  Ms1[level]=M1;
203  Ms2[level]=Mi;
204  lMs1[level]=s1;
205  lMs2[level]=si;
206  K[level]=k;
207  level++;
208  }
209  else
210  L[i]= l += s,S[i]=sss+=k,i++;
211  }
212  else
213  L[i]= l += s,S[i]=sss+=k,i++;
214  }
215  // warning for optimisation S is in [0:0.5] not in [0:1]
216  if (i>=512){
217  _error_("i>=512");
218  }
221  if (i>200 && kkk++<10) _printf_("WARNING: LengthInterpole: ( i=" << i << " l=" << l << " sss=" << sss << " ) " << sstop << "\n");
222  return l;
223  }

◆ abscisseInterpole

double abscisseInterpole ( const Metric Ma,
const Metric Mb,
R2  ,
double  s,
int  optim 
)
friend

Definition at line 327 of file Metric.cpp.

327  { /*{{{*/
328  /*Original code from Frederic Hecht <hecht@ann.jussieu.fr> (BAMG v1.01, Metric.cpp/abscisseInterpole)*/
329 
330  if(!optim) LengthInterpole(Ma,Mb,AB);
331  double l = s* LastMetricInterpole.lab,r;
332  int j=LastMetricInterpole.opt-1;
333 
335  // warning for optimisation S is the abcisse in [0:0.5]
336  // and L is le lenght
337  if(l<=L[0]){
338  r=2*S[0]*l/L[0];
339  }
340  else if (l>=L[j]){
341  r=1;
342  }
343  else{
344  int i=0;
345  while (j-i>1){
346  int k;
347  k= (i+j)/2;
348  if(l<=L[k]){
349  j=k;// l<=L[j]
350  }
351  else{
352  i=k; // L[i]<l
353  }
354  };
355  if (i==j){
356  r = 2*S[i];
357  }
358  else{
359  r = 2*(S[i]*(L[j]-l)+ S[j]*(l-L[i]))/(L[j]-L[i]);
360  }
361  }
362  if (r>1 || r<0){
363  _error_("r>1 || r<0");
364  }
365  return r ;
366  }

Field Documentation

◆ opt

int bamg::SaveMetricInterpole::opt

Definition at line 89 of file Metric.h.

◆ lab

double bamg::SaveMetricInterpole::lab

Definition at line 90 of file Metric.h.

◆ L

double bamg::SaveMetricInterpole::L[1024]

Definition at line 91 of file Metric.h.

◆ S

double bamg::SaveMetricInterpole::S[1024]

Definition at line 91 of file Metric.h.


The documentation for this class was generated from the following file:
bamg::LastMetricInterpole
SaveMetricInterpole LastMetricInterpole
Definition: Metric.cpp:12
_printf_
#define _printf_(StreamArgs)
Definition: Print.h:22
bamg::SaveMetricInterpole::lab
double lab
Definition: Metric.h:90
bamg::SaveMetricInterpole::L
double L[1024]
Definition: Metric.h:91
bamg::SaveMetricInterpole::opt
int opt
Definition: Metric.h:89
_error_
#define _error_(StreamArgs)
Definition: exceptions.h:49
bamg::SaveMetricInterpole::S
double S[1024]
Definition: Metric.h:91
bamg::Abs
T Abs(const T &a)
Definition: Abs.h:5
bamg::SaveMetricInterpole::LengthInterpole
friend double LengthInterpole(const Metric &Ma, const Metric &Mb, R2 AB)
Definition: Metric.cpp:158