In a very simple example I try to define a rectangular region
u = 1/Sqrt[2];
reg = ImplicitRegion[(-1 <= x <= 1 + u) && (-1 <= y <= 0 ) , {x, y}]
RegionPlot[ reg ]
Obviously the plot isn't complete.
What's wrong? Thanks!
In a very simple example I try to define a rectangular region
u = 1/Sqrt[2];
reg = ImplicitRegion[(-1 <= x <= 1 + u) && (-1 <= y <= 0 ) , {x, y}]
RegionPlot[ reg ]
Obviously the plot isn't complete.
What's wrong? Thanks!
Method -> {"DiscretizationMethod" -> "Symbolic"} work for this case.u = 1/Sqrt[2];
reg = ImplicitRegion[(-1 <= x <= 1 + u) && (-1 <= y <= 0), {x, y}]
RegionPlot[reg, Method -> {"DiscretizationMethod" -> "Symbolic"}]
RegionPlotshows its argument as a predicate rather than a region. For example,RegionPlot[reg[[1]], {x, -1, 1 + u}, {y, -1, 0}]. For the region useRegion[reg, Frame -> True, AspectRatio -> 1]– Bob Hanlon Dec 22 '19 at 20:42ImplicitRegionshow several examples like\[ScriptCapitalR] =ImplicitRegion[ x^6 - 5 x^4 y + 3 x^4 y^2 + 10 x^2 y^3 + 3 x^2 y^4 - y^5 + y^6 ==0, {x, y}];RegionPlot[\[ScriptCapitalR]]– Ulrich Neumann Dec 22 '19 at 20:49DiscretizeRegion[reg, Frame -> True]andRegionMeasure[reg]work correctly though. – Roman Dec 22 '19 at 21:20RegionPlot[]back in version 11.3 - see https://mathematica.stackexchange.com/questions/180959/solver-for-unsteady-flow-with-the-use-of-the-navier-stokes-and-mathematica-fem – Alex Trounev Dec 22 '19 at 23:24