From a311c5b3152899b448db48607bb562cbcc78b781 Mon Sep 17 00:00:00 2001 From: jgomez720 <114548659+jgomez720@users.noreply.github.com> Date: Wed, 26 Jun 2024 09:53:23 -0700 Subject: [PATCH] update onboarding KCL --- src/lib/exampleKcl.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib/exampleKcl.ts b/src/lib/exampleKcl.ts index ded76650c4..8a1e91bdd4 100644 --- a/src/lib/exampleKcl.ts +++ b/src/lib/exampleKcl.ts @@ -9,12 +9,12 @@ const wallMountL = 6 // the length of the bracket const sigmaAllow = 35000 // psi const width = 6 // inch const p = 300 // Force on shelf - lbs -const L = 12 // inches -const M = L * p / 2 // Moment experienced at fixed end of bracket -const FOS = 2 // Factor of safety of 2 to be conservative +const shelfLength = 12 // inches +const moment = shelfLength * p / 2 // Moment experienced at fixed end of bracket +const factorOfSafety = 2 // Factor of safety of 2 to be conservative // Calculate the thickness off the bending stress and factor of safety -const thickness = sqrt(6 * M * FOS / (width * sigmaAllow)) +const thickness = sqrt(6 * moment * factorOfSafety / (width * sigmaAllow)) // 0.25 inch fillet radius const filletR = 0.25