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
|
// 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 <vector>
#include <algorithm>
#include "GmshConfig.h"
#include "ModifyComponents.h"
#include "OctreePost.h"
#include "mathEvaluator.h"
StringXNumber ModifyComponentsOptions_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.}};
StringXString ModifyComponentsOptions_String[] = {
{GMSH_FULLRC, "Expression0", nullptr, "v0 * Sin(x)"},
{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_RegisterModifyComponentsPlugin()
{
return new GMSH_ModifyComponentsPlugin();
}
}
std::string GMSH_ModifyComponentsPlugin::getHelp() const
{
return "Plugin(ModifyComponents) modifies the components of "
"the `TimeStep'-th time step in the view `View', using the "
"expressions provided in `Expression0', ..., `Expression8'. "
"If an expression is empty, the corresponding component in "
"the view is not modified.\n\n"
"The expressions can contain:\n\n"
"- the usual mathematical functions (Log, Sqrt, "
"Sin, Cos, Fabs, ...) and operators (+, -, *, /, ^);\n\n"
"- the symbols x, y and z, to retrieve the "
"coordinates of the current node;\n\n"
"- the symbols Time and TimeStep, to retrieve the "
"current time and time step values;\n\n"
"- the symbols v0, v1, v2, ..., v8, to retrieve each "
"component of the field in `View' at the "
"`TimeStep'-th time step;\n\n"
"- the symbols w0, w1, w2, ..., w8, to retrieve each "
"component of the field in `OtherView' at the "
"`OtherTimeStep'-th time step. If `OtherView' "
"and `View' are based on different spatial grids, "
"or if their data types are different, `OtherView' "
"is interpolated onto `View'.\n\n"
"If `TimeStep' < 0, the plugin automatically loops "
"over all the time steps in `View' and evaluates "
"the expressions for each one.\n\n"
"If `OtherTimeStep' < 0, the plugin uses `TimeStep' "
"instead.\n\n"
"If `View' < 0, the plugin is run on the current view.\n\n"
"If `OtherView' < 0, the plugin uses `View' instead.\n\n"
"Plugin(ModifyComponents) is executed in-place.";
}
int GMSH_ModifyComponentsPlugin::getNbOptions() const
{
return sizeof(ModifyComponentsOptions_Number) / sizeof(StringXNumber);
}
StringXNumber *GMSH_ModifyComponentsPlugin::getOption(int iopt)
{
return &ModifyComponentsOptions_Number[iopt];
}
int GMSH_ModifyComponentsPlugin::getNbOptionsStr() const
{
return sizeof(ModifyComponentsOptions_String) / sizeof(StringXString);
}
StringXString *GMSH_ModifyComponentsPlugin::getOptionStr(int iopt)
{
return &ModifyComponentsOptions_String[iopt];
}
PView *GMSH_ModifyComponentsPlugin::execute(PView *view)
{
int timeStep = (int)ModifyComponentsOptions_Number[0].def;
int iView = (int)ModifyComponentsOptions_Number[1].def;
int otherTimeStep = (int)ModifyComponentsOptions_Number[2].def;
int otherView = (int)ModifyComponentsOptions_Number[3].def;
int forceInterpolation = (int)ModifyComponentsOptions_Number[4].def;
PView *v1 = getView(iView, view);
if(!v1) return view;
PViewData *data1 = v1->getData();
if(timeStep > data1->getNumTimeSteps() - 1) {
Msg::Error("Invalid time step (%d) in View[%d]: using step 0 instead",
timeStep, v1->getIndex());
timeStep = 0;
}
PView *v2 = v1;
if(otherView >= 0) {
if(otherView < (int)PView::list.size())
v2 = PView::list[otherView];
else
Msg::Error("View[%d] does not exist: using self", otherView);
}
PViewData *data2 = getPossiblyAdaptiveData(v2);
if(otherTimeStep < 0 &&
data2->getNumTimeSteps() != data1->getNumTimeSteps()) {
Msg::Error("Number of time steps don't match: using step 0");
otherTimeStep = 0;
}
else if(otherTimeStep > data2->getNumTimeSteps() - 1) {
Msg::Error("Invalid time step (%d) in View[%d]: using step 0 instead",
otherTimeStep, v2->getIndex());
otherTimeStep = 0;
}
std::vector<std::string> expressions(9), expressions0(9);
for(int i = 0; i < 9; i++) {
expressions[i] = ModifyComponentsOptions_String[i].def;
if(expressions[i].size())
expressions0[i] = expressions[i];
else
expressions0[i] = "0.";
}
const char *names[] = {"x", "y", "z", "Time", "TimeStep", "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(expressions0, variables);
std::vector<double> values(numVariables), res(9);
OctreePost *octree = nullptr;
if(forceInterpolation ||
(data1->getNumEntities() != data2->getNumEntities()) ||
(data1->getNumElements() != data2->getNumElements())) {
Msg::Info("Other view based on different grid: interpolating...");
octree = new OctreePost(v2);
}
for(int step = 0; step < data1->getNumTimeSteps(); step++) {
if(timeStep >= 0 && timeStep != step) continue;
double time = data1->getTime(step);
int step2 = (otherTimeStep < 0) ? step : otherTimeStep;
if(data1->isNodeData()) {
// tag all the nodes with "0" (the default tag)
for(int ent = 0; ent < data1->getNumEntities(step); ent++) {
for(int ele = 0; ele < data1->getNumElements(step, ent); ele++) {
if(data1->skipElement(step, ent, ele)) continue;
for(int nod = 0; nod < data1->getNumNodes(step, ent, ele); nod++)
data1->tagNode(step, ent, ele, nod, 0);
}
}
}
for(int ent = 0; ent < data1->getNumEntities(step); ent++) {
for(int ele = 0; ele < data1->getNumElements(step, ent); ele++) {
if(data1->skipElement(step, ent, ele)) continue;
int numComp = data1->getNumComponents(step, ent, ele);
int numComp2 = octree ? 9 : data2->getNumComponents(step2, ent, ele);
int numNodes = data1->getNumNodes(step, ent, ele);
std::vector<double> x(numNodes), y(numNodes), z(numNodes);
std::vector<int> tag(numNodes);
for(int nod = 0; nod < numNodes; nod++)
tag[nod] =
data1->getNode(step, ent, ele, nod, x[nod], y[nod], z[nod]);
for(int nod = 0; nod < numNodes; nod++) {
if(data1->isNodeData() && tag[nod])
continue; // node has already been modified
std::vector<double> v(std::max(9, numComp), 0.);
for(int comp = 0; comp < numComp; comp++)
data1->getValue(step, ent, ele, nod, comp, v[comp]);
std::vector<double> w(std::max(9, numComp2), 0.);
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 < numComp2; comp++)
data2->getValue(step2, ent, ele, nod, comp, w[comp]);
}
values[0] = x[nod];
values[1] = y[nod];
values[2] = z[nod];
values[3] = time;
values[4] = step;
for(int i = 0; i < 9; i++) values[5 + i] = v[i];
for(int i = 0; i < 9; i++) values[14 + i] = w[i];
if(f.eval(values, res)) {
for(int comp = 0; comp < numComp; comp++) {
if(expressions[comp].size()) {
data1->setValue(step, ent, ele, nod, comp, res[comp]);
}
}
}
if(data1->isNodeData()) data1->tagNode(step, ent, ele, nod, 1);
}
}
}
}
if(octree) delete octree;
data1->finalize();
v1->setChanged(true);
return v1;
}
|