⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 error.cpp

📁 OFELI is an object oriented library of C++ classes for development of finite element codes. Its main
💻 CPP
字号:
#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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -