Created
December 15, 2022 20:40
-
-
Save jsb2505/12c95fa80be8e9dbb3081b211b1d42be to your computer and use it in GitHub Desktop.
A module of loading functions for Excel's AFE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get_Bending_Moment = LAMBDA(permanent_UDL, imposed_UDL, length_mm, | |
LET( | |
g_k, permanent_UDL, | |
q_k, imposed_UDL, | |
L, length_mm, | |
γ_g, 1.35, | |
γ_q, 1.5, | |
(γ_g * g_k + γ_q * q_k) * (L / 1000) ^ 2 / 8 | |
) | |
); | |
Get_Shear_Force = LAMBDA(permanent_UDL, imposed_UDL, length_mm, | |
LET( | |
g_k, permanent_UDL, | |
q_k, imposed_UDL, | |
L, length_mm, | |
γ_g, 1.35, | |
γ_q, 1.5, | |
(γ_g * g_k + γ_q * q_k) * (L / 1000) / 2 | |
) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment