diff --git a/dune/microstructure/CorrectorComputer.hh b/dune/microstructure/CorrectorComputer.hh index a7c6f8cdf9591e737d4575dba88aeee4d484583b..d81552408b56790f2e5a3ae0a1584916f22360b8 100644 --- a/dune/microstructure/CorrectorComputer.hh +++ b/dune/microstructure/CorrectorComputer.hh @@ -896,7 +896,7 @@ public: auto subtractIntegralMean(VectorCT& coeffVector) { - // Substract correct Integral mean from each associated component function + // Subtract correct integral mean from each associated component function auto IM = integralMean(coeffVector); for(size_t k=0; k<dim; k++) @@ -1129,7 +1129,7 @@ public: } if(substract_integralMean) { - std::cout << " --- substracting integralMean --- " << std::endl; + std::cout << " --- subtracting integralMean --- " << std::endl; subtractIntegralMean(phi_1_); subtractIntegralMean(phi_2_); subtractIntegralMean(phi_3_); @@ -1413,7 +1413,7 @@ public: - // --- Check wheter stiffness matrix is symmetric + // --- Check whether stiffness matrix is symmetric void checkSymmetry() { std::cout << " Check Symmetry of stiffness matrix..." << std::endl; diff --git a/dune/microstructure/prestrainedMaterial.hh b/dune/microstructure/prestrainedMaterial.hh index a35aa2fef5b9f0bf332f7bdafd2816748ed3e89e..83e685b18669281591a89fd3d64b9d3bff9e0efb 100644 --- a/dune/microstructure/prestrainedMaterial.hh +++ b/dune/microstructure/prestrainedMaterial.hh @@ -332,7 +332,7 @@ Dune::FieldMatrix<double,6,6> setupPhase(Python::Module module, int phase) catch(Dune::Exception) { // std::cout << "(Could not read frame vectors for material phase) " << phase << ": - Canonical Frame (default) is used." << std::endl; - std::cout << "(Could not read rotaton axis & angle for material phase) " << phase << ": - Canonical Frame (default) is used." << std::endl; + std::cout << "(Could not read rotation axis & angle for material phase) " << phase << ": - Canonical Frame (default) is used." << std::endl; } @@ -369,7 +369,7 @@ Dune::FieldMatrix<double,6,6> setupPhase(Python::Module module, int phase) * * @param name name of the material file being used. */ - void setup(const std::string name) // cant use materialFunctionName_ here? + void setup(const std::string name) // can't use materialFunctionName_ here? { Python::Module module = Python::import(name); indicatorFunction_ = Python::make_function<int>(module.get("indicatorFunction"));