diff --git a/Common/DefaultOptions.h b/Common/DefaultOptions.h index 2fc15bd402eb060a517cb43747f4dc730d524517..2311a3fda6867072761330086f29b425c9261884 100644 --- a/Common/DefaultOptions.h +++ b/Common/DefaultOptions.h @@ -1152,6 +1152,8 @@ StringXNumber PostProcessingOptions_Number[] = { } ; StringXNumber ViewOptions_Number[] = { + { F|O, "AbscissaRangeType" , opt_view_abscissa_range_type , 1 , + "Ascissa scale range type (1=default, 2=custom)" }, { F|O, "AdaptVisualizationGrid" , opt_view_adapt_visualization_grid , 0. , "Use adaptive visualization grid (for high-order elements)?" }, { F|O, "AngleSmoothNormals" , opt_view_angle_smooth_normals , 30.0 , @@ -1233,6 +1235,10 @@ StringXNumber ViewOptions_Number[] = { "Forced component 7 (if View.ForceComponents > 0)" }, { F|O, "ComponentMap8" , opt_view_component_map8 , 8, "Forced component 8 (if View.ForceComponents > 0)" }, + { F, "CustomAbscissaMax" , opt_view_custom_abscissa_max , 0. , + "User-defined maximum abscissa value" }, + { F, "CustomAbscissaMin" , opt_view_custom_abscissa_min , 0. , + "User-defined minimum abscissa value" }, { F, "CustomMax" , opt_view_custom_max , 0. , "User-defined maximum value to be displayed" }, { F, "CustomMin" , opt_view_custom_min , 0. , diff --git a/Common/Options.cpp b/Common/Options.cpp index 7c10d9e7bbc0a654385493551ded8a4cb4908f69..6f070b2695d37d0b5829bd4ba28824d5864c66d2 100644 --- a/Common/Options.cpp +++ b/Common/Options.cpp @@ -5955,6 +5955,34 @@ double opt_view_custom_max(OPT_ARGS_NUM) #endif } +double opt_view_custom_abscissa_min(OPT_ARGS_NUM) +{ +#if defined(HAVE_POST) + GET_VIEW(0.); + if(action & GMSH_SET) { + opt->customAbscissaMin = val; + if(view) view->setChanged(true); + } + return opt->customAbscissaMin; +#else + return 0.; +#endif +} + +double opt_view_custom_abscissa_max(OPT_ARGS_NUM) +{ +#if defined(HAVE_POST) + GET_VIEW(0.); + if(action & GMSH_SET) { + opt->customAbscissaMax = val; + if(view) view->setChanged(true); + } + return opt->customAbscissaMax; +#else + return 0.; +#endif +} + double opt_view_xmin(OPT_ARGS_NUM) { #if defined(HAVE_POST) @@ -7413,6 +7441,22 @@ double opt_view_range_type(OPT_ARGS_NUM) #endif } +double opt_view_abscissa_range_type(OPT_ARGS_NUM) +{ +#if defined(HAVE_POST) + GET_VIEW(0.); + if(action & GMSH_SET) { + opt->abscissaRangeType = (int)val; + if(opt->abscissaRangeType < 1 || opt->abscissaRangeType > 3) + opt->abscissaRangeType = 1; + if(view) view->setChanged(true); + } + return opt->abscissaRangeType; +#else + return 0.; +#endif +} + double opt_view_tensor_type(OPT_ARGS_NUM) { #if defined(HAVE_POST) diff --git a/Common/Options.h b/Common/Options.h index 6663634df9c78230df90abf5b92f4d2c2d878328..239ed510736a915184c9e6bf6751f8de73595ad8 100644 --- a/Common/Options.h +++ b/Common/Options.h @@ -485,6 +485,8 @@ double opt_view_min(OPT_ARGS_NUM); double opt_view_max(OPT_ARGS_NUM); double opt_view_custom_min(OPT_ARGS_NUM); double opt_view_custom_max(OPT_ARGS_NUM); +double opt_view_custom_abscissa_min(OPT_ARGS_NUM); +double opt_view_custom_abscissa_max(OPT_ARGS_NUM); double opt_view_xmin(OPT_ARGS_NUM); double opt_view_xmax(OPT_ARGS_NUM); double opt_view_ymin(OPT_ARGS_NUM); @@ -579,6 +581,7 @@ double opt_view_draw_skin_only(OPT_ARGS_NUM); double opt_view_scale_type(OPT_ARGS_NUM); double opt_view_tensor_type(OPT_ARGS_NUM); double opt_view_range_type(OPT_ARGS_NUM); +double opt_view_abscissa_range_type(OPT_ARGS_NUM); double opt_view_vector_type(OPT_ARGS_NUM); double opt_view_glyph_location(OPT_ARGS_NUM); double opt_view_center_glyphs(OPT_ARGS_NUM); diff --git a/Graphics/drawGraph2d.cpp b/Graphics/drawGraph2d.cpp index a146aa3098d2afc80452aca1d02843c6cf1ca8ef..147424892bd871b36ade1b5f298eda00daf1706f 100644 --- a/Graphics/drawGraph2d.cpp +++ b/Graphics/drawGraph2d.cpp @@ -49,7 +49,8 @@ void drawContext::drawText2d() } static bool getGraphData(PView *p, std::vector<double> &x, double &xmin, - double &xmax, std::vector<std::vector<double> > &y) + double &xmax, std::vector<std::vector<double> > &y, + double &ymin, double &ymax) { PViewData *data = p->getData(true); // use adaptive data if available PViewOptions *opt = p->getOptions(); @@ -155,6 +156,20 @@ static bool getGraphData(PView *p, std::vector<double> &x, double &xmin, if(x.empty()) return false; + if(opt->abscissaRangeType == PViewOptions::Custom){ + std::vector<double> x2; + std::vector<std::vector<double> > y2(y.size()); + for(unsigned int i = 0; i < x.size(); i++){ + if(x[i] >= opt->customAbscissaMin && x[i] <= opt->customAbscissaMax){ + x2.push_back(x[i]); + for(unsigned int j = 0; j < y2.size(); j++) + y2[j].push_back(y[j][i]); + } + } + x = x2; + y = y2; + } + if(space){ xmin = xmax = x[0]; for(unsigned int i = 1; i < x.size(); i++){ @@ -172,6 +187,15 @@ static bool getGraphData(PView *p, std::vector<double> &x, double &xmin, for(unsigned int j = 0; j < y[i].size(); j++) y[i][j] = log10(y[i][j]); + ymin = VAL_INF; + ymax = -VAL_INF; + for(unsigned int i = 0; i < y.size(); i++){ + for(unsigned int j = 0; j < y[i].size(); j++){ + ymin = std::min(ymin, y[i][j]); + ymax = std::max(ymax, y[i][j]); + } + } + return true; } @@ -440,9 +464,13 @@ static void drawGraphCurves(drawContext *ctx, PView *p, double xleft, double yto static void drawGraph(drawContext *ctx, PView *p, double xleft, double ytop, double width, double height) { + std::vector<double> x; + std::vector<std::vector<double> > y; + double xmin, xmax, ymin, ymax; + if(!getGraphData(p, x, xmin, xmax, y, ymin, ymax)) return; + PViewData *data = p->getData(); PViewOptions *opt = p->getOptions(); - if(opt->rangeType == PViewOptions::Custom){ opt->tmpMin = opt->customMin; opt->tmpMax = opt->customMax; @@ -452,8 +480,8 @@ static void drawGraph(drawContext *ctx, PView *p, double xleft, double ytop, opt->tmpMax = data->getMax(opt->timeStep); } else{ - opt->tmpMin = data->getMin(); - opt->tmpMax = data->getMax(); + opt->tmpMin = ymin; + opt->tmpMax = ymax; } if(opt->scaleType == PViewOptions::Logarithmic){ @@ -461,10 +489,6 @@ static void drawGraph(drawContext *ctx, PView *p, double xleft, double ytop, opt->tmpMax = log10(opt->tmpMax); } - std::vector<double> x; - std::vector<std::vector<double> > y; - double xmin, xmax; - if(!getGraphData(p, x, xmin, xmax, y)) return; drawGraphAxes(ctx, p, xleft, ytop, width, height, xmin, xmax); drawGraphCurves(ctx, p, xleft, ytop, width, height, x, xmin, xmax, y); } diff --git a/Post/PViewOptions.h b/Post/PViewOptions.h index 56bfbc5dcd66fa7aa3ceedc89d970de7111072c9..b1b684e74081f6f410c8aa5779e4e46194ef626c 100644 --- a/Post/PViewOptions.h +++ b/Post/PViewOptions.h @@ -65,6 +65,7 @@ class PViewOptions { std::string axesFormat[3], axesLabel[3]; double axesPosition[6]; double customMin, customMax, tmpMin, tmpMax, externalMin, externalMax; + double customAbscissaMin, customAbscissaMax; SBoundingBox3d tmpBBox; double offset[3], raise[3], transform[3][3], displacementFactor, normalRaise; double explode; @@ -75,7 +76,7 @@ class PViewOptions { double angleSmoothNormals; int saturateValues, fakeTransparency; int showElement, showTime, showScale; - int scaleType, rangeType; + int scaleType, rangeType, abscissaRangeType; int vectorType, tensorType, glyphLocation, centerGlyphs; int timeStep; int drawStrings;