Exemple #1
0
 void GetEIF____00_31_UV(CMLoad_31 Load, float fL, out float fA, out float fB, out float fMa, out float fMb)
 {
     // Temporary
     fA = 0.0f;
     fB = 0.0f;
     fMa = 0.0f;
     fMb = 0.0f;
 }
Exemple #2
0
 // Triangular Load
 void GetEIF_0__0__31_UV(CMLoad_31 Load, float fL, out float fA, out float fB, out float fMa, out float fMb)
 {
     fA = 11f / 64f * Load.Fq * fL;
     fB = 21f / 64f * Load.Fq * fL;
     fMa = fMb = 0f;
 }
Exemple #3
0
 // Triangular Load
 void GetEIF_0__00_31_UV(CMLoad_31 Load, float fL, out float fA, out float fB, out float fMa, out float fMb)
 {
     fA = 11f / 64f * Load.Fq * fL;
     fB = 21f/64f * Load.Fq * fL;
     fMa = 0f;
     fMb = 5f/64f*Load.Fq*MathF.Pow2(fL);
 }
Exemple #4
0
 // Own mathematical class MathF used in functions written below
 // Triangular Load
 void GetEIF_00_00_31_UV(CMLoad_31 Load, float fL, out float fA, out float fB, out float fMa, out float fMb)
 {
     fA = fB = Load.Fq * fL / 4f;
     fMa = -5f * Load.Fq * MathF.Pow2(fL) / 96f;
     fMb = -fMa;
 }
Exemple #5
0
 void GetMLoadPart_31(CMLoad_31 Load, CE_1D_BASE Member, FEM_CALC_BASE.Enums.EElemSuppType2D eMType, out float fA, out float fB, out float fMa, out float fMb)
 {
     switch (eMType)
     {
         case Enums.EElemSuppType2D.eEl_00_00: // Both Side restrained
             {
                 GetEIF_00_00_31_UV(Load, Member.FLength, out fA, out fB, out fMa, out fMb);
                 return;
             }
         case Enums.EElemSuppType2D.eEl_00_0_:
             {
                 GetEIF_00_0__31_UV(Load, Member.FLength, out fA, out fB, out fMa, out fMb);
                 return;
             }
         case Enums.EElemSuppType2D.eEl_0__00:
             {
                 GetEIF_0__00_31_UV(Load, Member.FLength, out fA, out fB, out fMa, out fMb);
                 return;
             }
         case Enums.EElemSuppType2D.eEl_0__0_:
             {
                 GetEIF_0__0__31_UV(Load, Member.FLength, out fA, out fB, out fMa, out fMb);
                 return;
             }
         case Enums.EElemSuppType2D.eEl_00___:
             {
                 GetEIF_0__00_31_UV(Load, Member.FLength, out fA, out fB, out fMa, out fMb);
                 return;
             }
         case Enums.EElemSuppType2D.eEl____00:
             {
                 GetEIF_0__0__31_UV(Load, Member.FLength, out fA, out fB, out fMa, out fMb);
                 return;
             }
         default:
             {
                 // Exception
                 fA = fB = fMa = fMb = 0.0f;
                 return;
             }
     }
 }
Exemple #6
0
 void GetMLoadPart_31(CMLoad_31 Load, CE_1D_BASE Member, FEM_CALC_BASE.Enums.EElemSuppType2D eMType, out float fA, out float fB)
 {
     // Temporary
     fA = fB = 0.0f;
 }