Changeset 2913 for issm/trunk/src/c/Bamgx/Bamgx.cpp
- Timestamp:
- 01/26/10 14:23:56 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/Bamgx/Bamgx.cpp
r2899 r2913 25 25 int Bamgx(BamgMesh* bamgmesh,BamgGeom* bamggeom,BamgOpts* bamgopts){ 26 26 27 int noerr=1;28 27 29 28 /*output: */ … … 37 36 int maxnbv; 38 37 double hmin,hmax; 38 double err,errg,coef; 39 39 double cutoff; 40 40 int verbosity; 41 42 /*Bamg variables: */ 41 int Hessiantype,NbSmooth; 42 double power; 43 double omega; 44 45 /*intermediary*/ 46 int noerr=1; 43 47 int i,j,num; 44 48 int AbsError=0,nbjacoby=1,allquad=0; 45 49 double costheta=2; 46 50 double anisomax = 1e6; 47 double err=0.01,errg=0.1,coef=1;48 51 int KeepBackVertices=1; 49 52 double hminaniso=1e-100; 50 53 const double boundmaxsubdiv = 10; 51 54 double maxsubdiv=boundmaxsubdiv; 52 double omega=1.8;53 int NbSmooth=3;54 int ChoiseHessien = 0;55 double power=1;56 55 int Rescaling=1; 57 56 … … 61 60 /*Bamg options*/ 62 61 iso=bamgopts->iso; 62 err=bamgopts->err; 63 errg=bamgopts->errg; 64 Hessiantype=bamgopts->Hessiantype; 65 power=bamgopts->power; 66 NbSmooth=bamgopts->NbSmooth; 67 omega=bamgopts->omega; 68 coef=bamgopts->coef; 63 69 maxnbv=bamgopts->maxnbv; 64 70 hmin=bamgopts->hmin; … … 135 141 BTh.ReadMetric(bamgopts,hmin,hmax,coef); 136 142 } 137 else if (bamgopts->field){ 138 if (verbosity>1) printf(" Generating Metric from solution field...\n"); 139 BTh.IntersectConsMetric(bamgopts->field,1,0,hmin,hmax,sqrt(err)*coef,1e30,AbsError?0.0:cutoff,nbjacoby,Rescaling,power,ChoiseHessien); 140 } 141 else { // init with hmax 143 else { 144 145 // init with hmax 142 146 Metric Mhmax(hmax); 143 147 for (Int4 iv=0;iv<BTh.nbv;iv++) BTh[iv].m = Mhmax; 148 149 //use present fields to generate metric if present 150 if (bamgopts->field){ 151 if (verbosity>1) printf(" Generating Metric from solution field...\n"); 152 BTh.IntersectConsMetric(bamgopts->field,1,0,hmin,hmax,sqrt(err)*coef,1e30,AbsError?0.0:cutoff,nbjacoby,Rescaling,power,Hessiantype); 153 } 144 154 } 145 155
Note:
See TracChangeset
for help on using the changeset viewer.