@@ -4026,7 +4026,7 @@ void CONTACT::Beam3contact<numnodes, numnodalvalues>::compute_lin_eta_fix_xi(
40264026 // std::cout << "r2_xi: " << r2_xi << std::endl;
40274027 // std::cout << "r2_xixi: " << r2_xixi << std::endl;
40284028
4029- if (fabs (Core::FADUtils::cast_to_double (L)) < COLINEARTOL )
4029+ if (fabs (Core::FADUtils::cast_to_double (L)) < COLLINEARTOL )
40304030 FOUR_C_THROW (" Linearization of point to line projection is zero, choose tighter search boxes!" );
40314031
40324032 for (int i = 0 ; i < 3 ; i++)
@@ -4080,7 +4080,7 @@ void CONTACT::Beam3contact<numnodes, numnodalvalues>::compute_lin_xi_fix_eta(
40804080 L = Core::FADUtils::scalar_product (r1_xi, r1_xi) +
40814081 Core::FADUtils::scalar_product (delta_r, r1_xixi);
40824082
4083- if (fabs (Core::FADUtils::cast_to_double (L)) < COLINEARTOL )
4083+ if (fabs (Core::FADUtils::cast_to_double (L)) < COLLINEARTOL )
40844084 FOUR_C_THROW (" Linearization of point to line projection is zero, choose tighter search boxes!" );
40854085
40864086 for (int i = 0 ; i < 3 ; i++)
@@ -4895,7 +4895,7 @@ void CONTACT::Beam3contact<numnodes, numnodalvalues>::evaluate_lin_orthogonality
48954895 }
48964896
48974897 // Inverting (2x2) matrix df by hard coded formula, so that it is
4898- // possible to handle colinear vectors, because they lead to det(df) =0
4898+ // possible to handle collinear vectors, because they lead to det(df) =0
48994899 TYPE det_df = df (0 , 0 ) * df (1 , 1 ) - df (1 , 0 ) * df (0 , 1 );
49004900
49014901 // ********************************************************************
@@ -4907,7 +4907,7 @@ void CONTACT::Beam3contact<numnodes, numnodalvalues>::evaluate_lin_orthogonality
49074907 // ********************************************************************
49084908
49094909 // singular df
4910- if (Core::FADUtils::cast_to_double (Core::FADUtils::norm (det_df)) < COLINEARTOL )
4910+ if (Core::FADUtils::cast_to_double (Core::FADUtils::norm (det_df)) < COLLINEARTOL )
49114911 {
49124912 // sort out
49134913 elementscolinear = true ;
@@ -4998,7 +4998,7 @@ bool CONTACT::Beam3contact<numnodes, numnodalvalues>::evaluate_lin_ptl_orthogona
49984998 // check, if df=0: This can happen e.g. when the master beam 2 describes a circle geometry and the
49994999 // projectiong slave point coincides with the cetern of the circle
50005000
5001- if (fabs (Core::FADUtils::cast_to_double (df)) < COLINEARTOL )
5001+ if (fabs (Core::FADUtils::cast_to_double (df)) < COLLINEARTOL )
50025002 return false ;
50035003 else
50045004 return true ;
0 commit comments