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_C_prob = LAMBDA(return_period, [n], [K], | |
| LET( | |
| p, return_period, | |
| n, IF(ISOMITTED(n), 0.5, n), | |
| K, IF(ISOMITTED(K), 0.2, K), | |
| ((1 - K * LN(-LN(1 - 1 / p))) / (1 - K * LN(-LN(0.98)))) ^ n | |
| ) | |
| ); | |
| Get_C_alt = LAMBDA(altitude, [reference_height], |
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
| Tree_Names = CHOOSECOLS(Tree_Data,1); | |
| /** | |
| Contains a table of trees in the format: | |
| tree_name, tree_type, water_demand, mature_height | |
| */ | |
| Tree_Data = { | |
| "Elm English", "Broad-leafed", "High", 24; | |
| "Elm Wheatley", "Broad-leafed", "High", 22; |
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
| Materials = {"Softwood", "Hardwood", "Glulam", "LVL", "Green_Oak"}; | |
| Material_Properties = { | |
| "strength_class", | |
| "f_m_y_k", | |
| "f_v_k", | |
| "f_c_90_k", | |
| "E_0_mean", | |
| "G_mean", | |
| "E_005", |
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
| /* | |
| A function to calculate alpha as given by Appendix G in SCI P398 | |
| INPUTS: m, m2 and e | |
| RETURNS: value of alpha | |
| Example: | |
| =GetAlpha(40,45,35) | |
| Returns: | |
| 5.345 |
NewerOlder