VM2D 1.14
Vortex methods for 2D flows simulation
Loading...
Searching...
No Matches
Velocity2DBiotSavart.cpp File Reference

Файл кода с описанием класса VelocityBiotSavart. More...

#include "Velocity2DBiotSavart.h"
#include "Airfoil2D.h"
#include "Boundary2D.h"
#include "MeasureVP2D.h"
#include "Mechanics2D.h"
#include "StreamParser.h"
#include "Wake2D.h"
#include "World2D.h"
#include "BarnesHut.h"
Include dependency graph for Velocity2DBiotSavart.cpp:

Go to the source code of this file.

Functions

void ModifyE2 (double *ee2, double dst2)
 

Detailed Description

Файл кода с описанием класса VelocityBiotSavart.

Author
Марчевский Илья Константинович
Сокол Ксения Сергеевна
Рятина Евгения Павловна
Колганова Александра Олеговна \Version 1.14
Date
6 марта 2026 г.

Definition in file Velocity2DBiotSavart.cpp.

Function Documentation

◆ ModifyE2()

void ModifyE2 ( double *  ee2,
double  dst2 
)
inline

Definition at line 66 of file Velocity2DBiotSavart.cpp.

67{
68 if (dst2 > 0)
69 {
70 if (dst2 < ee2[0])
71 {
72 ee2[2] = ee2[1];
73 ee2[1] = ee2[0];
74 ee2[0] = dst2;
75 }//if (dist2<ee2[0])
76 else
77 {
78 if (dst2 < ee2[1])
79 {
80 ee2[2] = ee2[1];
81 ee2[1] = dst2;
82 }// if (dist2<ee2[1])
83 else
84 if (dst2 < ee2[2])
85 ee2[2] = dst2;
86 }//else
87 }//if (dst2>0)
88}
Here is the caller graph for this function: