Ignore:
Timestamp:
01/26/10 14:23:56 (15 years ago)
Author:
Mathieu Morlighem
Message:

minor more tweaks in Bamg

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk/src/c/Bamgx/Bamgx.cpp

    r2899 r2913  
    2525int Bamgx(BamgMesh* bamgmesh,BamgGeom* bamggeom,BamgOpts* bamgopts){
    2626       
    27         int noerr=1;
    2827
    2928        /*output: */
     
    3736        int    maxnbv;
    3837        double hmin,hmax;
     38        double err,errg,coef;
    3939        double cutoff;
    4040        int    verbosity;
    41 
    42         /*Bamg variables: */
     41        int    Hessiantype,NbSmooth;
     42        double power;
     43        double omega;
     44
     45        /*intermediary*/
     46        int noerr=1;
    4347        int i,j,num;
    4448        int AbsError=0,nbjacoby=1,allquad=0;
    4549        double costheta=2;
    4650        double anisomax = 1e6;
    47         double err=0.01,errg=0.1,coef=1;
    4851        int KeepBackVertices=1;
    4952        double hminaniso=1e-100;
    5053        const double  boundmaxsubdiv = 10;
    5154        double  maxsubdiv=boundmaxsubdiv;
    52         double omega=1.8;
    53         int NbSmooth=3;
    54         int ChoiseHessien = 0;
    55         double power=1;
    5655        int Rescaling=1;
    5756
     
    6160        /*Bamg options*/
    6261        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;
    6369        maxnbv=bamgopts->maxnbv;
    6470        hmin=bamgopts->hmin;
     
    135141                        BTh.ReadMetric(bamgopts,hmin,hmax,coef);
    136142                }
    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
    142146                        Metric Mhmax(hmax);
    143147                        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                        }
    144154                }
    145155
Note: See TracChangeset for help on using the changeset viewer.