Skip to content

Commit

Permalink
GetNDof() -> GlobalTrueVSize()
Browse files Browse the repository at this point in the history
  • Loading branch information
hughcars committed Aug 23, 2023
1 parent ee3a45b commit 7d839db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion palace/models/curlcurloperator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class CurlCurlOperator
const auto &GetRTSpace() const { return rt_fespace; }

// Return the number of true (conforming) dofs on the finest ND space.
auto GetNDof() { return GetNDSpace().GlobalTrueVSize(); }
auto GlobalTrueVSize() { return GetNDSpace().GlobalTrueVSize(); }

// Construct and return system matrix representing discretized curl-curl operator for
// Ampere's law.
Expand Down
2 changes: 1 addition & 1 deletion palace/models/laplaceoperator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ class LaplaceOperator
const auto &GetNDSpace() const { return nd_fespace; }

// Return the number of true (conforming) dofs on the finest H1 space.
auto GetNDof() { return GetH1Space().GlobalTrueVSize(); }
auto GlobalTrueVSize() { return GetH1Space().GlobalTrueVSize(); }

// Construct and return system matrix representing discretized Laplace operator for
// Gauss's law.
Expand Down
2 changes: 1 addition & 1 deletion palace/models/spaceoperator.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ class SpaceOperator
const auto &GetRTSpace() const { return rt_fespace; }

// Return the number of true (conforming) dofs on the finest ND space.
auto GetNDof() { return GetNDSpace().GlobalTrueVSize(); }
auto GlobalTrueVSize() { return GetNDSpace().GlobalTrueVSize(); }

// Construct any part of the frequency-dependent complex linear system matrix:
// A = K + iω C - ω² (Mr + i Mi) + A2(ω) .
Expand Down

0 comments on commit 7d839db

Please sign in to comment.