Changeset 2913


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

minor more tweaks in Bamg

Location:
issm/trunk/src
Files:
7 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
  • issm/trunk/src/c/Bamgx/objects/Geometry.cpp

    r2910 r2913  
    689689                                }
    690690                        }
    691                         printf("ord = %i\n",ord);
    692691
    693692                        // angular test on current vertex to guess whether it is a corner (ord = number of edges horlding i)
  • issm/trunk/src/c/Bamgx/objects/Triangles.cpp

    r2899 r2913  
    29052905
    29062906                                 R2 Grads = (nAB * sC + nBC * sA + nCA * sB ) /detT[i] ;
    2907                                  if(choice)
    2908                                         {
     2907                                 if(choice){
    29092908                                         int nbb = 0;
    29102909                                         Real8 dd = detT[i];
     
    29812980
    29822981                                        }
    2983                                  else
    2984                                         {
     2982                                 else {
    29852983
    29862984                                         // if edge on boundary no contribution  => normal = 0
  • issm/trunk/src/c/objects/BamgOpts.h

    r2899 r2913  
    1111        int     maxnbv;
    1212        double  MaximalAngleOfCorner;
     13        int     Hessiantype;
     14        double  power;
     15        int     NbSmooth;
     16        double  omega;
    1317        double  hmin;
    1418        double  hmax;
     
    1721        int     splitcorners;
    1822        int     verbose;
     23        double  err;
     24        double  errg;
     25        double  coef;
    1926        double* metric;
    2027        double* field;
  • issm/trunk/src/c/objects/Param.cpp

    r2907 r2913  
    698698                memcpy(doublevec,value,M*sizeof(double));
    699699        }
     700        else{
     701                xfree((void**)&doublevec); doublevec=NULL;
     702        }
    700703        ndof=0; //this vector will not be repartitioned.
    701704
  • issm/trunk/src/m/classes/public/bamg.m

    r2899 r2913  
    7777% Bamg Options {{{1
    7878bamg_options.iso=getfieldvalue(options,'iso',0);
     79bamg_options.err=getfieldvalue(options,'err',0.01);
     80bamg_options.errg=getfieldvalue(options,'errg',0.1);
     81bamg_options.coef=getfieldvalue(options,'coef',1);
     82bamg_options.power=getfieldvalue(options,'power',1);
     83bamg_options.Hessiantype=getfieldvalue(options,'Hessiantype',0);
     84bamg_options.NbSmooth=getfieldvalue(options,'NbSmooth',3);
     85bamg_options.omega=getfieldvalue(options,'omega',1.8);
    7986bamg_options.maxnbv=getfieldvalue(options,'maxnbv',10^6);
    8087bamg_options.MaximalAngleOfCorner=getfieldvalue(options,'MaximalAngleOfCorner',10);
     
    8592bamg_options.verbose=getfieldvalue(options,'verbose',1);
    8693bamg_options.splitcorners=getfieldvalue(options,'splitcorners',1);
    87 bamg_options.metric=getfieldvalue(options,'metric',zeros(0,3));
    88 bamg_options.field=getfieldvalue(options,'field',zeros(0,1));
     94bamg_options.metric=getfieldvalue(options,'metric',[]);
     95bamg_options.field=getfieldvalue(options,'field',[]);
    8996%}}}
    9097
  • issm/trunk/src/mex/Bamg/Bamg.cpp

    r2899 r2913  
    3434        int    iso,maxnbv,verbose,splitcorners;
    3535        double hmin,hmax;
     36        double err,errg,coef;
     37        double power;
     38        int    Hessiantype,NbSmooth;
     39        double omega;
    3640        double gradation;
    3741        double cutoff;
     
    104108        FetchData(&iso,mxGetField(BAMGOPTIONS,0,"iso"));
    105109        bamgopts.iso=iso;
     110        FetchData(&err,mxGetField(BAMGOPTIONS,0,"err"));
     111        bamgopts.err=err;
     112        FetchData(&errg,mxGetField(BAMGOPTIONS,0,"errg"));
     113        bamgopts.errg=errg;
     114        FetchData(&coef,mxGetField(BAMGOPTIONS,0,"coef"));
     115        bamgopts.coef=coef;
     116        FetchData(&Hessiantype,mxGetField(BAMGOPTIONS,0,"Hessiantype"));
     117        bamgopts.Hessiantype=Hessiantype;
     118        FetchData(&power,mxGetField(BAMGOPTIONS,0,"power"));
     119        bamgopts.power=power;
     120        FetchData(&NbSmooth,mxGetField(BAMGOPTIONS,0,"NbSmooth"));
     121        bamgopts.NbSmooth=NbSmooth;
     122        FetchData(&omega,mxGetField(BAMGOPTIONS,0,"omega"));
     123        bamgopts.omega=omega;
    106124        FetchData(&maxnbv,mxGetField(BAMGOPTIONS,0,"maxnbv"));
    107125        bamgopts.maxnbv=maxnbv;
Note: See TracChangeset for help on using the changeset viewer.