Shakir60 commited on
Commit
d212a90
·
verified ·
1 Parent(s): 1f50ebf

Create knowledge_base.py

Browse files
Files changed (1) hide show
  1. knowledge_base.py +87 -0
knowledge_base.py ADDED
@@ -0,0 +1,87 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ KNOWLEDGE_BASE = {
3
+ "spalling": [
4
+ {
5
+ "severity": "Critical",
6
+ "description": "Severe concrete spalling with exposed reinforcement and section loss",
7
+ "repair_method": ["Install temporary support", "Remove deteriorated concrete", "Clean and treat reinforcement", "Apply corrosion inhibitor", "Apply bonding agent", "High-strength repair mortar"],
8
+ "estimated_cost": "Very High ($15,000+)",
9
+ "timeframe": "3-4 weeks",
10
+ "location": "Primary structural elements",
11
+ "required_expertise": "Structural Engineer + Specialist Contractor",
12
+ "immediate_action": "Evacuate area, install temporary support, prevent access",
13
+ "prevention": "Regular inspections, waterproofing, chloride protection"
14
+ },
15
+ {
16
+ "severity": "High",
17
+ "description": "Surface spalling with visible reinforcement",
18
+ "repair_method": ["Remove damaged concrete", "Treat reinforcement", "Apply repair mortar", "Surface treatment"],
19
+ "estimated_cost": "High ($8,000-$15,000)",
20
+ "timeframe": "2-3 weeks",
21
+ "location": "Structural elements",
22
+ "required_expertise": "Structural Engineer",
23
+ "immediate_action": "Area isolation, temporary support assessment",
24
+ "prevention": "Protective coatings, drainage improvement"
25
+ }
26
+ ],
27
+ "reinforcement_corrosion": [
28
+ {
29
+ "severity": "Critical",
30
+ "description": "Severe corrosion with >30% section loss",
31
+ "repair_method": ["Structural support", "Remove concrete", "Replace reinforcement", "Corrosion protection", "Concrete repair"],
32
+ "estimated_cost": "Critical ($20,000+)",
33
+ "timeframe": "4-6 weeks",
34
+ "location": "Load-bearing elements",
35
+ "required_expertise": "Senior Structural Engineer",
36
+ "immediate_action": "Immediate evacuation, emergency shoring",
37
+ "prevention": "Waterproofing, cathodic protection"
38
+ }
39
+ ],
40
+ "structural_crack": [
41
+ {
42
+ "severity": "High",
43
+ "description": "Cracks >5mm in structural elements",
44
+ "repair_method": ["Structural analysis", "Epoxy injection", "Carbon fiber reinforcement", "Crack monitoring"],
45
+ "estimated_cost": "High ($10,000-$20,000)",
46
+ "timeframe": "2-4 weeks",
47
+ "location": "Primary structure",
48
+ "required_expertise": "Structural Engineer",
49
+ "immediate_action": "Install crack monitors, load restriction",
50
+ "prevention": "Load management, joint maintenance"
51
+ }
52
+ ],
53
+ "dampness": [
54
+ {
55
+ "severity": "Medium",
56
+ "description": "Active water penetration with efflorescence",
57
+ "repair_method": ["Water source identification", "Drainage improvement", "Waterproof membrane", "Ventilation"],
58
+ "estimated_cost": "Medium ($5,000-$10,000)",
59
+ "timeframe": "1-2 weeks",
60
+ "location": "Various",
61
+ "required_expertise": "Waterproofing Specialist",
62
+ "immediate_action": "Dehumidification, efflorescence cleaning",
63
+ "prevention": "Proper drainage, vapor barriers"
64
+ }
65
+ ],
66
+ "no_damage": [
67
+ {
68
+ "severity": "Low",
69
+ "description": "No significant structural issues",
70
+ "repair_method": ["Regular inspection", "Preventive maintenance"],
71
+ "estimated_cost": "Low ($500-$2,000)",
72
+ "timeframe": "1-2 days",
73
+ "location": "General",
74
+ "required_expertise": "Building Inspector",
75
+ "immediate_action": "Continue monitoring",
76
+ "prevention": "Regular maintenance schedule"
77
+ }
78
+ ]
79
+ }
80
+
81
+ DAMAGE_TYPES = {
82
+ 0: {'name': 'spalling', 'risk': 'High', 'color': '#ff4d4d'},
83
+ 1: {'name': 'reinforcement_corrosion', 'risk': 'Critical', 'color': '#800000'},
84
+ 2: {'name': 'structural_crack', 'risk': 'High', 'color': '#ff6b6b'},
85
+ 3: {'name': 'dampness', 'risk': 'Medium', 'color': '#4dabf7'},
86
+ 4: {'name': 'no_damage', 'risk': 'Low', 'color': '#40c057'}
87
+ }