コード例 #1
0
        public void GetNominalTensileStrengthModifiedToIncludeTheEffectsOfShearStressDG29()
        {
            BoltFactory bf = new BoltFactory("A325");

            IBoltBearing bolt    = bf.GetBearingBolt(7.0 / 8.0, "N");
            double       V       = 8.05;
            double       phi_R_n = bolt.GetAvailableTensileStrength(V);

            Assert.Equal(39.3, Math.Round(phi_R_n, 1));
        }
コード例 #2
0
        public static Dictionary <string, object> BoltTensileStrength(double d_b, string BoltMaterialId, string BoltThreadCase, string Code = "AISC360-10")
        {
            //Default values
            double phiR_nt = 0;


            //Calculation logic:
            BoltFactory  bf   = new BoltFactory(BoltMaterialId);
            IBoltBearing bolt = bf.GetBearingBolt(d_b, BoltThreadCase);

            phiR_nt = bolt.GetAvailableTensileStrength();

            return(new Dictionary <string, object>
            {
                { "phiR_nt", phiR_nt }
            });
        }
コード例 #3
0
        public static Dictionary <string, object> BearingBoltShearStrength(double d_b, string BoltMaterialId, string BoltThreadCase,
                                                                           double NumberShearPlanes, bool IsEndLoadedConnectionWithLengthEfect = false, string Code = "AISC360-10")
        {
            //Default values
            double phiR_nv = 0;


            //Calculation logic:
            BoltFactory  bf   = new BoltFactory(BoltMaterialId);
            IBoltBearing bolt = bf.GetBearingBolt(d_b, BoltThreadCase);

            phiR_nv = bolt.GetAvailableShearStrength(NumberShearPlanes, IsEndLoadedConnectionWithLengthEfect);

            return(new Dictionary <string, object>
            {
                { "phiR_nv", phiR_nv }
            });
        }