Skip to content

Commit

Permalink
remove a bug
Browse files Browse the repository at this point in the history
  • Loading branch information
FR13ndSDP committed Oct 21, 2023
1 parent 27fa15c commit c3bb828
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions Exec/Wing/prob_parm.H
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@
#define EBR_PROB_PARM_H_

#include <AMReX_REAL.H>
#include <Eigen/Core>
#include <Eigen/Dense>
#include "AMReX_GpuQualifiers.H"

using namespace amrex::literals;

Expand All @@ -22,18 +19,4 @@ struct ProbParm
~ProbParm ();
};

// AMREX_GPU_DEVICE
// AMREX_FORCE_INLINE
// double SoC(const Eigen::MatrixXd& D, int r, int c, double dx) noexcept {
// double result = (D(r,c) - D(r,c+1))/(2*dx); //二阶中心有限差分格式
// return result;
// }

// AMREX_GPU_DEVICE
// AMREX_FORCE_INLINE
// double SoOsB(const Eigen::MatrixXd& D, int r, double dx) noexcept {
// double result = (D(r,2) - 4*D(r,1) + 3*D(r,0))/(2*dx); //二阶单边后向有限差分格式
// return result;
// }

#endif

0 comments on commit c3bb828

Please sign in to comment.