forked from OpenSEMBA/dgtd
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reorganizes codes. Removes using namespace mfem from headers.
- Loading branch information
1 parent
10f2619
commit 55e3b5b
Showing
29 changed files
with
227 additions
and
216 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,9 @@ | ||
#include "Sources.h" | ||
#include <math.h> | ||
|
||
|
||
namespace maxwell { | ||
|
||
|
||
using namespace mfem; | ||
|
||
Source::Source( | ||
Model& model, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
#pragma once | ||
|
||
#include "mfem.hpp" | ||
#include <mfem.hpp> | ||
#include "maxwell/Types.h" | ||
#include "maxwell/BilinearIntegrators.h" | ||
|
||
#include <Eigen/Dense> | ||
#include <maxwell/Model.h> | ||
|
||
Eigen::MatrixXd buildExpectedAverageDenseMatrix1D(const int order,const int elements); | ||
Eigen::MatrixXd buildExpectedJumpDenseMatrix1D(const int order, const int elements); | ||
Eigen::MatrixXd buildDGTrace1DEigen(FiniteElementSpace& fes, maxwell::FluxCoefficient ab); | ||
Eigen::MatrixXd buildMaxwellDGTrace1DEigen(FiniteElementSpace& fes, const std::vector<maxwell::Direction>& dir, const double beta); | ||
|
||
Eigen::MatrixXd buildDGTrace1DEigen( | ||
mfem::FiniteElementSpace& fes, maxwell::FluxCoefficient ab); | ||
Eigen::MatrixXd buildMaxwellDGTrace1DEigen( | ||
mfem::FiniteElementSpace& fes, const std::vector<maxwell::Direction>& dir, const double beta); | ||
|
||
Eigen::MatrixXd build3DOneElementDMatrix(); |
Oops, something went wrong.