1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
// Gmsh - Copyright (C) 1997-2021 C. Geuzaine, J.-F. Remacle
//
// See the LICENSE.txt file for license information. Please report all
// issues on https://gitlab.onelab.info/gmsh/gmsh/issues.
#include "GmshConfig.h"
#include "GmshDefines.h"
#include "MathEval.h"
#include "mathEvaluator.h"
#include "OctreePost.h"
#include "GEntity.h"
#include <algorithm>
StringXNumber MathEvalOptions_Number[] = {
{GMSH_FULLRC, "TimeStep", nullptr, -1.},
{GMSH_FULLRC, "View", nullptr, -1.},
{GMSH_FULLRC, "OtherTimeStep", nullptr, -1.},
{GMSH_FULLRC, "OtherView", nullptr, -1.},
{GMSH_FULLRC, "ForceInterpolation", nullptr, 0.},
{GMSH_FULLRC, "PhysicalRegion", nullptr, -1.}};
StringXString MathEvalOptions_String[] = {
{GMSH_FULLRC, "Expression0", nullptr, "Sqrt(v0^2+v1^2+v2^2)"},
{GMSH_FULLRC, "Expression1", nullptr, ""},
{GMSH_FULLRC, "Expression2", nullptr, ""},
{GMSH_FULLRC, "Expression3", nullptr, ""},
{GMSH_FULLRC, "Expression4", nullptr, ""},
{GMSH_FULLRC, "Expression5", nullptr, ""},
{GMSH_FULLRC, "Expression6", nullptr, ""},
{GMSH_FULLRC, "Expression7", nullptr, ""},
{GMSH_FULLRC, "Expression8", nullptr, ""}};
extern "C" {
GMSH_Plugin *GMSH_RegisterMathEvalPlugin() { return new GMSH_MathEvalPlugin(); }
}
std::string GMSH_MathEvalPlugin::getHelp() const
{
return "Plugin(MathEval) creates a new view using "
"data from the time step `TimeStep' in the view "
"`View'.\n\n"
"If only `Expression0' is given (and `Expression1', "
"..., `Expression8' are all empty), the plugin "
"creates a scalar view. If `Expression0', `Expression1' "
"and/or `Expression2' are given (and `Expression3', "
"..., `Expression8' are all empty) the plugin creates "
"a vector view. Otherwise the plugin creates a tensor "
"view.\n\n"
"In addition to the usual mathematical functions "
"(Exp, Log, Sqrt, Sin, Cos, Fabs, etc.) and operators "
"(+, -, *, /, ^), all expressions can contain:\n\n"
"- the symbols v0, v1, v2, ..., vn, which represent "
"the n components in `View';\n\n"
"- the symbols w0, w1, w2, ..., wn, which represent "
"the n components of `OtherView', at time step "
"`OtherTimeStep';\n\n"
"- the symbols x, y and z, which represent the three "
"spatial coordinates.\n\n"
"If `TimeStep' < 0, the plugin extracts data from all "
"the time steps in the view.\n\n"
"If `View' < 0, the plugin is run on the current view.\n\n"
"Plugin(MathEval) creates one new view."
"If `PhysicalRegion' < 0, the plugin is run "
"on all physical regions.\n\n"
"Plugin(MathEval) creates one new list-based view.";
}
int GMSH_MathEvalPlugin::getNbOptions() const
{
return sizeof(MathEvalOptions_Number) / sizeof(StringXNumber);
}
StringXNumber *GMSH_MathEvalPlugin::getOption(int iopt)
{
return &MathEvalOptions_Number[iopt];
}
int GMSH_MathEvalPlugin::getNbOptionsStr() const
{
return sizeof(MathEvalOptions_String) / sizeof(StringXString);
}
StringXString *GMSH_MathEvalPlugin::getOptionStr(int iopt)
{
return &MathEvalOptions_String[iopt];
}
PView *GMSH_MathEvalPlugin::execute(PView *view)
{
int timeStep = (int)MathEvalOptions_Number[0].def;
int iView = (int)MathEvalOptions_Number[1].def;
int otherTimeStep = (int)MathEvalOptions_Number[2].def;
int iOtherView = (int)MathEvalOptions_Number[3].def;
int forceInterpolation = (int)MathEvalOptions_Number[4].def;
int physicalRegion = (int)MathEvalOptions_Number[5].def;
std::vector<std::string> expr(9);
for(int i = 0; i < 9; i++) expr[i] = MathEvalOptions_String[i].def;
PView *v1 = getView(iView, view);
if(!v1) return view;
PViewData *data1 = getPossiblyAdaptiveData(v1);
if(data1->hasMultipleMeshes()) {
Msg::Error("MathEval plugin cannot be applied to multi-mesh views");
return view;
}
PView *otherView = v1;
if(iOtherView >= 0) {
otherView = getView(iOtherView, view);
if(!otherView) {
Msg::Error("MathEval plugin could not find other view %i", iOtherView);
return view;
}
}
PViewData *otherData = getPossiblyAdaptiveData(otherView);
if(otherData->hasMultipleMeshes()) {
Msg::Error("MathEval plugin cannot be applied to multi-mesh views");
return view;
}
if(otherTimeStep < 0 &&
otherData->getNumTimeSteps() != data1->getNumTimeSteps()) {
Msg::Error("Number of time steps don't match: using step 0");
otherTimeStep = 0;
}
else if(otherTimeStep > otherData->getNumTimeSteps() - 1) {
Msg::Error("Invalid time step (%d) in View[%d]: using step 0 instead",
otherTimeStep, otherView->getIndex());
otherTimeStep = 0;
}
int numComp2;
if(expr[3].size() || expr[4].size() || expr[5].size() || expr[6].size() ||
expr[7].size() || expr[8].size()) {
numComp2 = 9;
for(int i = 0; i < 9; i++)
if(expr[i].empty()) expr[i] = "0";
}
else if(expr[1].size() || expr[2].size()) {
numComp2 = 3;
for(int i = 0; i < 3; i++)
if(expr[i].empty()) expr[i] = "0";
}
else {
numComp2 = 1;
}
expr.resize(numComp2);
const char *names[] = {"x", "y", "z", "v0", "v1", "v2", "v3",
"v4", "v5", "v6", "v7", "v8", "w0", "w1",
"w2", "w3", "w4", "w5", "w6", "w7", "w8"};
std::size_t numVariables = sizeof(names) / sizeof(names[0]);
std::vector<std::string> variables(numVariables);
for(std::size_t i = 0; i < numVariables; i++) variables[i] = names[i];
mathEvaluator f(expr, variables);
if(expr.empty()) return view;
std::vector<double> values(numVariables), res(numComp2);
OctreePost *octree = nullptr;
if(forceInterpolation ||
(data1->getNumEntities() != otherData->getNumEntities()) ||
(data1->getNumElements() != otherData->getNumElements())) {
Msg::Info("Other view based on different grid: interpolating...");
octree = new OctreePost(otherView);
}
PView *v2 = new PView();
PViewDataList *data2 = getDataList(v2);
if(timeStep < 0) { timeStep = -data1->getNumTimeSteps(); }
else if(timeStep > data1->getNumTimeSteps() - 1) {
Msg::Error("Invalid time step (%d) in View[%d]: using all steps instead",
timeStep, v1->getIndex());
timeStep = -data1->getNumTimeSteps();
}
int firstNonEmptyStep = data1->getFirstNonEmptyTimeStep();
int timeBeg = (timeStep < 0) ? firstNonEmptyStep : timeStep;
int timeEnd = (timeStep < 0) ? -timeStep : timeStep + 1;
for(int ent = 0; ent < data1->getNumEntities(timeBeg); ent++) {
bool ok = (physicalRegion <= 0);
if(physicalRegion > 0) {
GEntity *ge = data1->getEntity(timeBeg, ent);
if(ge) {
auto it =
std::find(ge->physicals.begin(), ge->physicals.end(), physicalRegion);
ok = (it != ge->physicals.end());
}
}
if(!ok) continue;
for(int ele = 0; ele < data1->getNumElements(timeBeg, ent); ele++) {
if(data1->skipElement(timeBeg, ent, ele)) continue;
int numNodes = data1->getNumNodes(timeBeg, ent, ele);
int type = data1->getType(timeBeg, ent, ele);
int numComp = data1->getNumComponents(timeBeg, ent, ele);
int otherNumComp = (!otherData || octree) ?
9 :
otherData->getNumComponents(timeBeg, ent, ele);
std::vector<double> *out = data2->incrementList(numComp2, type, numNodes);
std::vector<double> v(std::max(9, numComp), 0.);
std::vector<double> w(std::max(9, otherNumComp), 0.);
std::vector<double> x(numNodes), y(numNodes), z(numNodes);
for(int nod = 0; nod < numNodes; nod++)
data1->getNode(timeBeg, ent, ele, nod, x[nod], y[nod], z[nod]);
for(int nod = 0; nod < numNodes; nod++) out->push_back(x[nod]);
for(int nod = 0; nod < numNodes; nod++) out->push_back(y[nod]);
for(int nod = 0; nod < numNodes; nod++) out->push_back(z[nod]);
for(int step = timeBeg; step < timeEnd; step++) {
if(!data1->hasTimeStep(step)) continue;
int step2 = (otherTimeStep < 0) ? step : otherTimeStep;
for(int nod = 0; nod < numNodes; nod++) {
for(int comp = 0; comp < numComp; comp++)
data1->getValue(step, ent, ele, nod, comp, v[comp]);
if(otherData) {
if(octree) {
int qn = forceInterpolation ? numNodes : 0;
if(!octree->searchScalar(x[nod], y[nod], z[nod], &w[0], step2,
nullptr, qn, &x[0], &y[0], &z[0]))
if(!octree->searchVector(x[nod], y[nod], z[nod], &w[0], step2,
nullptr, qn, &x[0], &y[0], &z[0]))
octree->searchTensor(x[nod], y[nod], z[nod], &w[0], step2,
nullptr, qn, &x[0], &y[0], &z[0]);
}
else
for(int comp = 0; comp < otherNumComp; comp++)
otherData->getValue(step2, ent, ele, nod, comp, w[comp]);
}
values[0] = x[nod];
values[1] = y[nod];
values[2] = z[nod];
for(int i = 0; i < 9; i++) values[3 + i] = v[i];
for(int i = 0; i < 9; i++) values[12 + i] = w[i];
if(f.eval(values, res)) {
for(int i = 0; i < numComp2; i++) out->push_back(res[i]);
}
else {
goto end;
}
}
}
}
}
end:
if(octree) delete octree;
if(timeStep < 0) {
for(int i = firstNonEmptyStep; i < data1->getNumTimeSteps(); i++) {
if(!data1->hasTimeStep(i)) continue;
data2->Time.push_back(data1->getTime(i));
}
}
else
data2->Time.push_back(data1->getTime(timeStep));
data2->setName(data1->getName() + "_MathEval");
data2->setFileName(data1->getName() + "_MathEval.pos");
data2->finalize();
return v2;
}
|