Skip to content

Commit

Permalink
Change wording
Browse files Browse the repository at this point in the history
  • Loading branch information
ericjching committed Nov 30, 2021
1 parent 95c324a commit a98ae2c
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
10 changes: 5 additions & 5 deletions src/physics/base/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ class PhysicsBase(ABC):
Abstract Methods:
-----------------
get_conv_flux_interior
computes the convective analytic flux for element interiors
computes the convective analytical flux for element interiors
Methods:
--------
Expand Down Expand Up @@ -170,7 +170,7 @@ class PhysicsBase(ABC):
gets the recommended quadrature order associated with the given
physics class
get_conv_flux_projected
computes the analytic convective flux projected in a given
computes the analytical convective flux projected in a given
direction
get_conv_flux_numerical
computes the convective numerical flux
Expand Down Expand Up @@ -523,7 +523,7 @@ def get_quadrature_order(self, order):
@abstractmethod
def get_conv_flux_interior(self, Uq):
'''
This method computes the convective analytic flux for element
This method computes the convective analytical flux for element
interiors.
Inputs:
Expand All @@ -539,7 +539,7 @@ def get_conv_flux_interior(self, Uq):

def get_diff_flux_interior(self, Uq, gUq):
'''
This method computes the diffusive analytic flux for element
This method computes the diffusive analytical flux for element
interiors.
Inputs:
Expand All @@ -557,7 +557,7 @@ def get_diff_flux_interior(self, Uq, gUq):

def get_conv_flux_projected(self, Uq, normals):
'''
This method computes the convective analytic flux projected in a
This method computes the convective analytical flux projected in a
given direction.
Inputs:
Expand Down
2 changes: 1 addition & 1 deletion src/physics/base/data.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ class BCWeakPrescribed(BCBase):
See BCBase for detailed comments of attributes and methods.
Child classes define their own get_boundary_state.
This class computes the boundary flux via the analytic flux based on
This class computes the boundary flux via the analytical flux based on
only the exterior state, i.e. F(UqB, n).
'''
def get_boundary_flux(self, physics, UqI, normals, x, t, gUq=None):
Expand Down
2 changes: 1 addition & 1 deletion src/physics/base/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@

class FcnType(Enum):
'''
Enum class that stores the types of analytic functions for initial
Enum class that stores the types of analytical functions for initial
conditions, exact solutions, and/or boundary conditions. These
functions are generalizable to different kinds of physics.
'''
Expand Down
2 changes: 1 addition & 1 deletion src/physics/euler/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

class FcnType(Enum):
'''
Enum class that stores the types of analytic functions for initial
Enum class that stores the types of analytical functions for initial
conditions, exact solutions, and/or boundary conditions. These
functions are specific to the available Euler equation sets.
'''
Expand Down
2 changes: 1 addition & 1 deletion src/physics/navierstokes/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

class FcnType(Enum):
'''
Enum class that stores the types of analytic functions for initial
Enum class that stores the types of analytical functions for initial
conditions, exact solutions, and/or boundary conditions. These
functions are specific to the available Euler equation sets.
'''
Expand Down
2 changes: 1 addition & 1 deletion src/physics/scalar/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

class FcnType(Enum):
'''
Enum class that stores the types of analytic functions for initial
Enum class that stores the types of analytical functions for initial
conditions, exact solutions, and/or boundary conditions. These
functions are specific to the available scalar equation sets.
'''
Expand Down
2 changes: 1 addition & 1 deletion src/physics/zerodimensional/functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

class FcnType(Enum):
'''
Enum class that stores the types of analytic functions for initial
Enum class that stores the types of analytical functions for initial
conditions, exact solutions, and/or boundary conditions. These
functions are specific to the available scalar equation sets.
'''
Expand Down
14 changes: 7 additions & 7 deletions test/component/numerics/basis/test_ader_tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
])
def test_legendre_spacetime_massmatrix(order):
'''
This test compares the analytic solution of the space-time MM to
This test compares the analytical solution of the space-time MM to
the computed one.
'''
basis = basis_defs.LegendreQuad(order)
Expand Down Expand Up @@ -59,7 +59,7 @@ def test_legendre_spacetime_massmatrix(order):
])
def test_legendre_spacetime_massmatrix_phys(order):
'''
This test compares the analytic solution of the space-time MM to
This test compares the analytical solution of the space-time MM to
the computed one, but uses a physics element that spans [0.0, 0.5]
'''
basis = basis_defs.LegendreQuad(order)
Expand Down Expand Up @@ -102,7 +102,7 @@ def test_legendre_spacetime_massmatrix_phys(order):
])
def test_temporal_flux_ader_tn(order):
'''
This test compares the analytic solution of the space-time temporal
This test compares the analytical solution of the space-time temporal
flux evaluated at t^{n} to the computed one.
'''
basis = basis_defs.LegendreSeg(order)
Expand Down Expand Up @@ -153,7 +153,7 @@ def test_temporal_flux_ader_tn(order):
])
def test_temporal_flux_ader_tnp1(order):
'''
This test compares the analytic solution of the space-time temporal
This test compares the analytical solution of the space-time temporal
flux evaluated at t^{n+1} to the computed one.
'''
basis_st = basis_defs.LegendreQuad(order)
Expand Down Expand Up @@ -205,7 +205,7 @@ def test_temporal_flux_ader_tnp1(order):
])
def test_legendre_spacetime_stiffnessmatrix_spacedir(dt, order):
'''
This test compares the analytic solution of the space-time
This test compares the analytical solution of the space-time
stiffness matrix in space to the computed one.
'''
basis = basis_defs.LegendreSeg(order)
Expand Down Expand Up @@ -258,7 +258,7 @@ def test_legendre_spacetime_stiffnessmatrix_spacedir(dt, order):
])
def test_legendre_spacetime_stiffnessmatrix_spacedir_phys(dt, order):
'''
This test compares the analytic solution of the space-time
This test compares the analytical solution of the space-time
stiffness matrix in space to the computed one.
'''
basis = basis_defs.LegendreSeg(order)
Expand Down Expand Up @@ -316,7 +316,7 @@ def test_legendre_spacetime_stiffnessmatrix_spacedir_phys(dt, order):
])
def test_legendre_spacetime_stiffnessmatrix_timedir(dt, order):
'''
This test compares the analytic solution of the space-time
This test compares the analytical solution of the space-time
stiffness matrix in time to the computed one.
'''
basis = basis_defs.LegendreSeg(order)
Expand Down

0 comments on commit a98ae2c

Please sign in to comment.