Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/oofemlib/floatarray.C
Original file line number Diff line number Diff line change
Expand Up @@ -828,7 +828,7 @@ void FloatArray :: times(double factor)
double FloatArray :: normalize()
{
double norm = this->computeNorm();
if ( norm < 1.e-80 ) {
if ( norm < 1.e-8 ) {
OOFEM_ERROR("cannot norm receiver, norm is too small");
}

Expand Down
2 changes: 1 addition & 1 deletion src/sm/Elements/Beams/beam3d.h
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace oofem {
class FEI3dLineLin;

/**
* This class implements a 2-dimensional beam element
* This class implements a 3-dimensional beam element
* with cubic lateral displacement interpolation (rotations are quadratic)
* and longitudial displacements are linear.
* This is an exact displacement approximation for beam with no
Expand Down