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 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337
|
// 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 <cmath>
#include "GmshConfig.h"
#include "StreamLines.h"
#include "OctreePost.h"
#include "Context.h"
#include "PViewOptions.h"
#if defined(HAVE_OPENGL)
#include "drawContext.h"
#endif
StringXNumber StreamLinesOptions_Number[] = {
{GMSH_FULLRC, "X0", GMSH_StreamLinesPlugin::callbackX0, 0.},
{GMSH_FULLRC, "Y0", GMSH_StreamLinesPlugin::callbackY0, 0.},
{GMSH_FULLRC, "Z0", GMSH_StreamLinesPlugin::callbackZ0, 0.},
{GMSH_FULLRC, "X1", GMSH_StreamLinesPlugin::callbackX1, 1.},
{GMSH_FULLRC, "Y1", GMSH_StreamLinesPlugin::callbackY1, 0.},
{GMSH_FULLRC, "Z1", GMSH_StreamLinesPlugin::callbackZ1, 0.},
{GMSH_FULLRC, "X2", GMSH_StreamLinesPlugin::callbackX2, 0.},
{GMSH_FULLRC, "Y2", GMSH_StreamLinesPlugin::callbackY2, 1.},
{GMSH_FULLRC, "Z2", GMSH_StreamLinesPlugin::callbackZ2, 0.},
{GMSH_FULLRC, "NumPointsU", GMSH_StreamLinesPlugin::callbackU, 10},
{GMSH_FULLRC, "NumPointsV", GMSH_StreamLinesPlugin::callbackV, 1},
{GMSH_FULLRC, "DT", nullptr, .1},
{GMSH_FULLRC, "MaxIter", nullptr, 100},
{GMSH_FULLRC, "TimeStep", nullptr, 0},
{GMSH_FULLRC, "View", nullptr, -1.},
{GMSH_FULLRC, "OtherView", nullptr, -1.}};
extern "C" {
GMSH_Plugin *GMSH_RegisterStreamLinesPlugin()
{
return new GMSH_StreamLinesPlugin();
}
}
void GMSH_StreamLinesPlugin::draw(void *context)
{
#if defined(HAVE_OPENGL)
glColor4ubv((GLubyte *)&CTX::instance()->color.fg);
drawContext *ctx = (drawContext *)context;
double p[3];
for(int i = 0; i < getNbU(); ++i) {
for(int j = 0; j < getNbV(); ++j) {
getPoint(i, j, p);
ctx->drawSphere(CTX::instance()->pointSize, p[0], p[1], p[2], 1);
}
}
#endif
}
double GMSH_StreamLinesPlugin::callback(int num, int action, double value,
double *opt, double step, double min,
double max)
{
switch(action) { // configure the input field
case 1: return step;
case 2: return min;
case 3: return max;
default: break;
}
*opt = value;
GMSH_Plugin::setDrawFunction(draw);
return 0.;
}
double GMSH_StreamLinesPlugin::callbackX0(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[0].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackY0(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[1].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackZ0(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[2].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackX1(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[3].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackY1(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[4].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackZ1(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[5].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackX2(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[6].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackY2(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[7].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackZ2(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[8].def,
CTX::instance()->lc / 100., -2 * CTX::instance()->lc,
2 * CTX::instance()->lc);
}
double GMSH_StreamLinesPlugin::callbackU(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[9].def, 1, 1,
100);
}
double GMSH_StreamLinesPlugin::callbackV(int num, int action, double value)
{
return callback(num, action, value, &StreamLinesOptions_Number[10].def, 1, 1,
100);
}
std::string GMSH_StreamLinesPlugin::getHelp() const
{
return "Plugin(StreamLines) computes stream lines "
"from the `TimeStep'-th time step of a vector "
"view `View' and optionally interpolates the "
"scalar view `OtherView' on the resulting stream "
"lines.\n\n"
"The plugin takes as input a grid defined by the "
"3 points (`X0',`Y0',`Z0') (origin), (`X1',`Y1',`Z1') "
"(axis of U) and (`X2',`Y2',`Z2') (axis of V).\n\n"
"The number of points along U and V that are to be "
"transported is set with the options `NumPointsU' "
"and `NumPointsV'. The equation\n\n"
"dX(t)/dt = V(x,y,z)\n\n"
"is then solved with the initial condition X(t=0) "
"chosen as the grid and with V(x,y,z) interpolated "
"on the vector view.\n\n"
"The time stepping scheme is a RK44 with step size "
"`DT' and `MaxIter' maximum number of iterations.\n\n"
"If `TimeStep' < 0, the plugin tries to compute "
"streamlines of the unsteady flow.\n\n"
"If `View' < 0, the plugin is run on the current view.\n\n"
"Plugin(StreamLines) creates one new list-based view. This "
"view contains multi-step vector points if `OtherView' "
"< 0, or single-step scalar lines if `OtherView' >= 0.";
}
int GMSH_StreamLinesPlugin::getNbOptions() const
{
return sizeof(StreamLinesOptions_Number) / sizeof(StringXNumber);
}
StringXNumber *GMSH_StreamLinesPlugin::getOption(int iopt)
{
return &StreamLinesOptions_Number[iopt];
}
int GMSH_StreamLinesPlugin::getNbU()
{
return (int)StreamLinesOptions_Number[9].def;
}
int GMSH_StreamLinesPlugin::getNbV()
{
return (int)StreamLinesOptions_Number[10].def;
}
void GMSH_StreamLinesPlugin::getPoint(int iU, int iV, double *X)
{
double u = getNbU() > 1 ? (double)iU / (double)(getNbU() - 1.) : 0.;
double v = getNbV() > 1 ? (double)iV / (double)(getNbV() - 1.) : 0.;
X[0] =
StreamLinesOptions_Number[0].def +
u * (StreamLinesOptions_Number[3].def - StreamLinesOptions_Number[0].def) +
v * (StreamLinesOptions_Number[6].def - StreamLinesOptions_Number[0].def);
X[1] =
StreamLinesOptions_Number[1].def +
u * (StreamLinesOptions_Number[4].def - StreamLinesOptions_Number[1].def) +
v * (StreamLinesOptions_Number[7].def - StreamLinesOptions_Number[1].def);
X[2] =
StreamLinesOptions_Number[2].def +
u * (StreamLinesOptions_Number[5].def - StreamLinesOptions_Number[2].def) +
v * (StreamLinesOptions_Number[8].def - StreamLinesOptions_Number[2].def);
}
PView *GMSH_StreamLinesPlugin::execute(PView *v)
{
double DT = StreamLinesOptions_Number[11].def;
int maxIter = (int)StreamLinesOptions_Number[12].def;
int timeStep = (int)StreamLinesOptions_Number[13].def;
int iView = (int)StreamLinesOptions_Number[14].def;
int otherView = (int)StreamLinesOptions_Number[15].def;
PView *v1 = getView(iView, v);
if(!v1) return v;
PViewData *data1 = getPossiblyAdaptiveData(v1);
PView *v2 = (otherView < 0) ? nullptr : getView(otherView, v);
PViewData *data2 = v2 ? getPossiblyAdaptiveData(v2) : nullptr;
// sanity checks
if(timeStep > data1->getNumTimeSteps() - 1) {
Msg::Error("Invalid time step (%d) in view[%d]", v1->getIndex());
return v;
}
OctreePost o1(v1);
double *val2 = nullptr;
OctreePost *o2 = nullptr;
if(data2) {
val2 = new double[data2->getNumTimeSteps()];
o2 = new OctreePost(v2);
}
PView *v3 = new PView();
PViewDataList *data3 = getDataList(v3);
const double b1 = 1. / 3., b2 = 2. / 3., b3 = 1. / 3., b4 = 1. / 6.;
const double a1 = 0.5, a2 = 0.5, a3 = 1., a4 = 1.;
double XINIT[3], X[3], DX[3], X1[3], X2[3], X3[3], X4[3];
for(int i = 0; i < getNbU(); ++i) {
for(int j = 0; j < getNbV(); ++j) {
getPoint(i, j, XINIT);
getPoint(i, j, X);
if(data2) { o2->searchScalar(X[0], X[1], X[2], val2, -1); }
else {
data3->NbVP++;
data3->VP.push_back(X[0]);
data3->VP.push_back(X[1]);
data3->VP.push_back(X[2]);
}
int currentTimeStep = 0;
for(int iter = 0; iter < maxIter; iter++) {
double XPREV[3] = {X[0], X[1], X[2]};
if(timeStep < 0) {
double T0 = data1->getTime(0);
double currentT = T0 + DT * iter;
data3->Time.push_back(currentT);
for(; currentTimeStep < data1->getNumTimeSteps() - 1 &&
currentT > 0.5 * (data1->getTime(currentTimeStep) +
data1->getTime(currentTimeStep + 1));
currentTimeStep++)
;
}
else {
currentTimeStep = timeStep;
}
// dX/dt = V
// X1 = X + a1 * DT * V(X)
// X2 = X + a2 * DT * V(X1)
// X3 = X + a3 * DT * V(X2)
// X4 = X + a4 * DT * V(X3)
// X = X + b1 X1 + b2 X2 + b3 X3 + b4 x4
double val[3];
o1.searchVector(X[0], X[1], X[2], val, currentTimeStep);
for(int k = 0; k < 3; k++) X1[k] = X[k] + DT * val[k] * a1;
o1.searchVector(X1[0], X1[1], X1[2], val, currentTimeStep);
for(int k = 0; k < 3; k++) X2[k] = X[k] + DT * val[k] * a2;
o1.searchVector(X2[0], X2[1], X2[2], val, currentTimeStep);
for(int k = 0; k < 3; k++) X3[k] = X[k] + DT * val[k] * a3;
o1.searchVector(X3[0], X3[1], X3[2], val, currentTimeStep);
for(int k = 0; k < 3; k++) X4[k] = X[k] + DT * val[k] * a4;
for(int k = 0; k < 3; k++)
X[k] += (b1 * (X1[k] - X[k]) + b2 * (X2[k] - X[k]) +
b3 * (X3[k] - X[k]) + b4 * (X4[k] - X[k]));
for(int k = 0; k < 3; k++) DX[k] = X[k] - XINIT[k];
if(data2) {
data3->NbSL++;
data3->SL.push_back(XPREV[0]);
data3->SL.push_back(X[0]);
data3->SL.push_back(XPREV[1]);
data3->SL.push_back(X[1]);
data3->SL.push_back(XPREV[2]);
data3->SL.push_back(X[2]);
for(int k = 0; k < data2->getNumTimeSteps(); k++)
data3->SL.push_back(val2[k]);
o2->searchScalar(X[0], X[1], X[2], val2, -1);
for(int k = 0; k < data2->getNumTimeSteps(); k++)
data3->SL.push_back(val2[k]);
}
else {
data3->VP.push_back(DX[0]);
data3->VP.push_back(DX[1]);
data3->VP.push_back(DX[2]);
}
}
}
}
if(data2) {
delete[] val2;
delete o2;
}
else {
v3->getOptions()->vectorType = PViewOptions::Displacement;
}
data3->setName(data1->getName() + "_StreamLines");
data3->setFileName(data1->getName() + "_StreamLines.pos");
data3->finalize();
return v3;
}
|