error.cpp
来自「OFELI is an object oriented library of C」· C++ 代码 · 共 17 行
CPP
17 行
#include "Mesh.h"
#include "User.h"
#include "Vect.h"
using namespace OFELI;
void error(const Mesh &ms, User &ud, const Vect<complex<double> > &u)
{
double ee=0, e;
const Node *nd;
for (ms.TopNode(); (nd=ms.GetNode());) {
complex<double> U = ud.ExactSolution(nd->Coord());
e = abs(U - u(nd->Label()));
ee += e*e;
}
cout << "Discrete L2 error = " << sqrt(ee/ms.NbNodes()) << endl;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?