Skip to content

Commit

Permalink
[cleanup] Fix spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
felgru committed Nov 1, 2021
1 parent 42f9f28 commit 0ab7bd8
Show file tree
Hide file tree
Showing 16 changed files with 21 additions and 21 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ and this project does not adhere to [Semantic Versioning](http://semver.org/).
trace variables now.
* `BoundaryTools::getInflowBoundaryValue` has been renamed to
`BoundaryTools::getBoundaryValue` as it also works for other boundary
values. Additionaly, it now takes a single boundary value function
values. Additionally, it now takes a single boundary value function
instead of a tuple of functions. Since `getBoundaryValue` takes only a
single FE space, it didn’t make any sense to pass multiple boundary
value functions to it.
Expand Down Expand Up @@ -349,7 +349,7 @@ and this project does not adhere to [Semantic Versioning](http://semver.org/).

### Fixed
* Don’t try to install the removed header pqksubsamplednodalbasis.hh.
* Fixed remaining pedantic warnings (exept for the deprecation warnings
* Fixed remaining pedantic warnings (except for the deprecation warnings
generated by dune-grid which are out of our control).

## 0.1.1 - 2016-07-22
Expand Down
4 changes: 2 additions & 2 deletions INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ Installation of Dune on other Linux distributions and MacOS
dune-uggrid (https://www.dune-project.org/modules/dune-uggrid/),
dune-typetree (https://www.dune-project.org/modules/dune-typetree/),
dune-functions (https://www.dune-project.org/modules/dune-functions/)
- The current developement version 2.7 from the Git master branch
- The current development version 2.7 from the Git master branch
of dune-subgrid:
https://git.imp.fu-berlin.de/agnumpde/dune-subgrid

Expand Down Expand Up @@ -230,7 +230,7 @@ your dpg-program (i.e. `plot_solution`):
You must call MPIHelper::instance(argc,argv) in your main() function
before using the MPI CollectiveCommunication!"
```
This can be fixed by disabeling MPI by adding
This can be fixed by disabling MPI by adding
`-DCMAKE_DISABLE_FIND_PACKAGE_MPI=TRUE` in the `CMAKE_FLAGS` of your
dune.opts file.

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ finite elements](http://dx.doi.org/10.11588/ans.2017.1.27719)
by F. Gruber, A. Klewinghaus and O. Mula.

For build instruction see the accompanying [INSTALL.md](INSTALL.md) file.
See [doc/experiments.md](doc/experiments.md) for explainations on how to
See [doc/experiments.md](doc/experiments.md) for explanations on how to
run the example programs bundled with dune-dpg.
If you are interested in an API documentation of dune-dpg, see the
instructions in section [Generating API documentation with Doxygen]
Expand Down
2 changes: 1 addition & 1 deletion TODO
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ known bugs:
* When calling the update() method of normalized spaces, we do not
update the gridviews associated with the GridViewFunctions in the
coefficients of the inner product that handles the normalization.
That is not a problem for constant or piecwise constant coefficients
That is not a problem for constant or piecewise constant coefficients
but might lead to wrong evaluations for other GridViewFunctions.
* src/kernel_svds.cc does not work for non-wavelet kernels due to
changes in the scattering kernel functions.
Expand Down
2 changes: 1 addition & 1 deletion cmake/modules/FindBoostHana.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#
# Module that checks whether boost::hana is available and usable.
#
# Sets the follwing variable:
# Sets the following variable:
#
# HAVE_BOOST_HANA True if boost::hana is available.
#
Expand Down
2 changes: 1 addition & 1 deletion doc/release.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Release process
===============

To create a new relase of dune-dpg follow these steps:
To create a new release of dune-dpg follow these steps:

1. Create a new branch for the release and set the version number in
dune.module. Replace `$VERSION` with the version of the new release.
Expand Down
4 changes: 2 additions & 2 deletions dune/dpg/functions/gridviewfunctions.hh
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public:
}

/**
* \brief Obtain local contex this LocalFunction is bound to
* \brief Obtain the local context this LocalFunction is bound to
*/
const LocalContext& localContext() const
{
Expand Down Expand Up @@ -163,7 +163,7 @@ public:
}

/**
* \brief Obtain local contex this LocalFunction is bound to
* \brief Obtain the local context this LocalFunction is bound to
*/
const LocalContext& localContext() const
{
Expand Down
4 changes: 2 additions & 2 deletions dune/dpg/leastsquares.hh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace Dune {
*
* Solve a least-squares problem for X
* to make sure that it is well defined even when A
* is severly ill conditioned.
* is severely ill conditioned.
*/
template<class Matrix>
void solveLeastSquares(const Matrix& A, const Matrix& b, Matrix& x)
Expand All @@ -34,7 +34,7 @@ void solveLeastSquares(const Matrix& A, const Matrix& b, Matrix& x)
*
* Solve a least-squares problem for x
* to make sure that it is well defined even when A
* is severly ill conditioned.
* is severely ill conditioned.
*
* \note This destroys the input b and overwrites it with the
* least squares solution.
Expand Down
2 changes: 1 addition & 1 deletion dune/dpg/radiative_transfer/waveletkernelapproximation.hh
Original file line number Diff line number Diff line change
Expand Up @@ -936,7 +936,7 @@ namespace ScatteringKernelApproximation {
const size_t quadOrder = 2*nQuadAngle-1;
const auto uWltPair = DWT(uLegendre, wltOrder+1, uLevel, quadOrder);
Eigen::VectorXd uWlt = PairToXd(uWltPair);
// Approx with trucated kernelMatrix
// Approx with truncated kernelMatrix
Eigen::VectorXd KuWlt
= kernelMatrixTH.topLeftCorner(rows,uWlt.size()) * uWlt;
// Express Ku in Legendre basis on each segment of [-pi,pi]
Expand Down
2 changes: 1 addition & 1 deletion dune/dpg/testspace_coefficient_matrix.hh
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public:
#if DUNE_DPG_USE_LEAST_SQUARES_INSTEAD_OF_CHOLESKY
// Solve a least-squares problem for coefficientMatrix_
// to make sure that it is well defined even when the Gramian of
// the inner product is severly ill conditioned.
// the inner product is severely ill conditioned.
solveLeastSquares(stiffnessMatrix, bilinearMatrix, coefficientMatrix_);
#else
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public:
* gridView_.size(GeometryTypes::triangle);
} else {
static_assert(dim >= 1 && dim <= 2,
"BernsteinDGRefinedDGPreBasis not implmented grids of this dimension!");
"BernsteinDGRefinedDGPreBasis not implemented on grids of this dimension!");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public:
* gridView_.size(GeometryTypes::triangle);
} else {
static_assert(dim >= 1 && dim <= 2,
"LagrangeDGRefinedDGPreBasis not implmented for grids of this dimension.");
"LagrangeDGRefinedDGPreBasis not implemented for grids of this dimension.");
}
}

Expand Down
2 changes: 1 addition & 1 deletion dune/functions/functionspacebases/optimaltestbasis.hh
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ public:

/**
* \note We don't update anything here, as we expect the spaces referred
* to in testspaceCoefficientMatrix_ to be updated seperately.
* to in testspaceCoefficientMatrix_ to be updated separately.
*/
void update (const GridView&)
{}
Expand Down
4 changes: 2 additions & 2 deletions dune/localfunctions/lagrange/pktrace2d.hh
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ namespace Dune
* results in undefined behaviour. The exception is that the
* destructor of this class may still be called. The information
* contained in the vertexOrder object is extracted and the object
* is no longer needed after the contructor returns.
* is no longer needed after the constructor returns.
*/
template<class VertexOrder>
PkTrace2DFiniteElement(const Geometry &geometry,
Expand Down Expand Up @@ -195,7 +195,7 @@ namespace Dune
* become invalid results in undefined behaviour. The exception is
* that the destructor of this class may still be called. The
* information contained in the vertexOrder object is extracted and
* the object is no longer needed after the contructor returns. No
* the object is no longer needed after the constructor returns. No
* reference to internal data of the factory is stored.
*/
template<class VertexOrder>
Expand Down
2 changes: 1 addition & 1 deletion src/manufactured_transport.cc
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ double fInnerD1(const Domain& x,
return std::expm1(c[0]*x[0])*std::exp(c[1]*x[1])*c[1];
}

// This function satifies the zero incoming flux bounday conditions
// This function satisfies the zero incoming flux boundary condition
template <class Domain,class Direction>
double fBoundary(const Domain& x,
const Direction& s)
Expand Down
2 changes: 1 addition & 1 deletion src/manufactured_transport_uniform.cc
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ double fInnerD1(const Domain& x,
// return -2*(x[1]-0.5); //v RT
}

// This function satifies the zero incoming flux bounday conditions
// This function satisfies the zero incoming flux boundary condition
template <class Domain,class Direction>
double fBoundary(const Domain& x,
const Direction& s)
Expand Down

0 comments on commit 0ab7bd8

Please sign in to comment.