Skip to content

Instantly share code, notes, and snippets.

@jsb2505
Created December 15, 2022 20:40
Show Gist options
  • Save jsb2505/12c95fa80be8e9dbb3081b211b1d42be to your computer and use it in GitHub Desktop.
Save jsb2505/12c95fa80be8e9dbb3081b211b1d42be to your computer and use it in GitHub Desktop.
A module of loading functions for Excel's AFE
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