-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdescr.go
50 lines (35 loc) · 1.54 KB
/
descr.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
package bolt
var Description map[string]string = map[string]string{
"NoView": "do not view all results",
"FullView": "show all results",
"view": "local variable of view",
"thk": "thickness of flange. Unit - meter",
"dia": "the float number interpretation of diameter",
"holeDiameter": "diameter of hole. Unit - meter",
"b": "bolt property",
"bc": "bolt class",
"bd": "bolt diameter. Unit - meter",
"boltPinch": "bolt pinch. Unit - meter",
"fub": "the ultimate tensile strength. Unit - Pa",
"fyb": "the yield strength. Unit - Pa",
"FactorγM2": "the partial safety factor",
"FtEd": "the design tensile force per bolt for the ultimate limit state. Unit - Pa",
"FtRd": "the design tension resistance per bolt. Unit - Pa",
"FvEd": "the design shear force per bolt for the ultimate limit state. Unit - Pa",
"FvRd": "the shear design resistance per bolt. Unit - Pa",
"ανThreadShear": "factor if shear by thread of bolt",
"ανUnthreadShear": "factor if shear not by thread of bolt",
"max": "local variable of maximal value",
"f1": "local value of ratio",
"f2": "local value of ratio",
"UsuallyBolt": "type of bolt head",
"CountersunkBolt": "type of bolt head",
"ThreadShear": "location of shear area on thread",
"UnthreadShear": "location of shear area not on thread",
// ignore
"G4p6": "", "G4p8": "", "G5p6": "",
"G5p8": "", "G6p8": "", "G8p8": "", "G10p9": "",
"D12": "", "D16": "", "D20": "", "D24": "",
"D30": "", "D36": "", "D42": "", "D48": "",
"d": "", "p": "", "pd": "", "s": "",
}