-
Notifications
You must be signed in to change notification settings - Fork 12
/
create_f2k.py
498 lines (466 loc) · 19 KB
/
create_f2k.py
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
from pathlib import Path
from typing import Iterable, Union
import numpy as np
__all__ = ['Safe', 'CreateF2kFile']
class Safe():
def __init__(self,
input_f2k_path : Path = None,
output_f2k_path : Path = None,
) -> None:
self.input_f2k_path = input_f2k_path
if output_f2k_path is None:
output_f2k_path = input_f2k_path
self.output_f2k_path = output_f2k_path
self.__file_object = None
self.tables_contents = None
def __enter__(self):
self.__file_object = open(self.input_f2k_path, 'r')
return self.__file_object
def __exit__(self, type, val, tb):
self.__file_object.close()
def get_tables_contents(self):
with open(self.input_f2k_path, 'r') as reader:
lines = reader.readlines()
tables_contents = dict()
n = len("TABLE: ")
context = ''
table_key = None
for line in lines:
if line.startswith("TABLE:"):
if table_key and context:
tables_contents[table_key] = context
context = ''
table_key = line[n+1:-2]
else:
context += line
self.tables_contents = tables_contents
return tables_contents
def get_points_coordinates(self,
content : str = None,
) -> dict:
if content is None:
content = self.tables_contents["OBJECT GEOMETRY - POINT COORDINATES"]
lines = content.split('\n')
points_coordinates = dict()
for line in lines:
if not line:
continue
line = line.lstrip(' ')
fields_values = line.split()
coordinates = []
for i, field_value in enumerate(fields_values[:-1]):
if i == 0:
point_name = str(field_value.split('=')[1])
else:
value = float(field_value.split('=')[1])
coordinates.append(value)
points_coordinates[point_name] = coordinates
return points_coordinates
def is_point_exist(self,
coordinate : list,
content : Union[str, bool] = None,
):
points_coordinates = self.get_points_coordinates(content)
for id, coord in points_coordinates.items():
if coord == coordinate:
return id
return None
def add_content_to_table(self, table_key, content):
curr_content = self.tables_contents.get(table_key, '')
self.tables_contents[table_key] = curr_content + content
return None
def force_length_unit(self,
content : Union[str, bool] = None,
):
if content is None:
if self.tables_contents is None:
self.get_tables_contents()
table_key = "PROGRAM CONTROL"
content = self.tables_contents.get(table_key, None)
if content is None:
return
label = 'CurrUnits="'
init_curr_unit = content.find(label)
init_unit_index = init_curr_unit + len(label)
end_unit_index = content[init_unit_index:].find('"') + init_unit_index
force, length, _ = content[init_unit_index: end_unit_index].split(', ')
self.force_unit, self.length_unit = force, length
self.force_units = self.get_force_units(self.force_unit)
self.length_units = self.get_length_units(self.length_unit)
return force, length
def write(self):
if self.tables_contents is None:
self.get_tables_contents()
with open(self.output_f2k_path, 'w') as writer:
for table_key, content in self.tables_contents.items():
writer.write(f'\n\nTABLE: "{table_key}"\n')
writer.write(content)
writer.write("\nEND TABLE DATA")
return None
def get_force_units(self, force_unit : str):
'''
force_unit can be 'N', 'KN', 'Kgf', 'tonf'
'''
if force_unit == 'N':
return dict(N=1, KN=1000, Kgf=9.81, tonf=9810)
elif force_unit == 'KN':
return dict(N=.001, KN=1, Kgf=.00981, tonf=9.81)
elif force_unit == 'Kgf':
return dict(N=1/9.81, KN=1000/9.81, Kgf=1, tonf=1000)
elif force_unit == 'tonf':
return dict(N=.000981, KN=.981, Kgf=.001, tonf=1)
else:
raise KeyError
def get_length_units(self, length_unit : str):
'''
length_unit can be 'mm', 'cm', 'm'
'''
if length_unit == 'mm':
return dict(mm=1, cm=10, m=1000)
elif length_unit == 'cm':
return dict(mm=.1, cm=1, m=100)
elif length_unit == 'm':
return dict(mm=.001, cm=.01, m=1)
else:
raise KeyError
class CreateF2kFile(Safe):
'''
load_cases : load cases that user wants to imported in f2k file
case_types : load case types that user wants to import in f2k file
append : if False, it create f2k file from scratch, if True,
it adds contents to current file
'''
def __init__(self,
input_f2k,
etabs = None,
load_cases : list = None,
case_types : list = None,
model_datum : float = None,
append: bool = False,
):
if not append:
input_f2k.touch()
super().__init__(input_f2k)
if etabs is None:
import etabs_obj
etabs = etabs_obj.EtabsModel(backup=False)
self.etabs = etabs
self.etabs.set_current_unit('N', 'mm')
if model_datum is None:
model_datum = self.etabs.story.get_base_name_and_level()[1]
self.model_datum = model_datum
if load_cases is None:
load_cases = self.etabs.load_cases.get_load_cases()
self.load_cases = load_cases
if case_types is None:
case_types = ['LinStatic']
self.case_types = case_types
if append:
self.get_tables_contents()
else:
self.tables_contents = dict()
self.initiate()
def initiate(self):
table_key = "PROGRAM CONTROL"
content = f'ProgramName="SAFE 2014" Version=14.0.0 ProgLevel="Post Tensioning" CurrUnits="N, mm, C" ModelDatum={self.model_datum}\n'
self.tables_contents[table_key] = content
def add_grids(self):
table_key = 'Grid Definitions - Grid Lines'
cols = ['LineType', 'ID', 'Ordinate']
df = self.etabs.database.read(table_key, to_dataframe=True, cols=cols)
filt = df.LineType.isin(('X (Cartesian)', 'Y (Cartesian)'))
df = df.loc[filt]
replacements = {
'X (Cartesian)' : 'X',
'Y (Cartesian)' : 'Y',
}
df.replace({'LineType' : replacements}, inplace=True)
df.insert(loc=0, column='CoordSys', value='CoordSys=GLOBAL')
df['ID'] = '"' + df['ID'] + '"'
d = {
'LineType': 'AxisDir=',
'ID': 'GridID=',
'Ordinate' : 'Ordinate='
}
content = self.add_assign_to_fields_of_dataframe(df, d)
table_key = "GRID LINES"
self.add_content_to_table(table_key, content)
return content
def add_point_coordinates(self):
# base_name = self.etabs.story.get_base_name_and_level()[0]
table_key = 'Objects and Elements - Joints'
cols = ['ElmName', 'GlobalX', 'GlobalY', 'GlobalZ', 'Story']
df = self.etabs.database.read(table_key, to_dataframe=True, cols=cols)
# get reaction joints
self.etabs.load_cases.select_all_load_cases()
table_key2 = "Joint Design Reactions"
cols = ['UniqueName']
df2 = self.etabs.database.read(table_key2, to_dataframe=True, cols=cols)
joint_names = df2['UniqueName'].unique()
filt = df['ElmName'].isin(joint_names)
df = df.loc[filt]
df['Story'] = "SpecialPt=Yes"
df['GlobalZ'] = f'{self.model_datum}'
d = {'ElmName' : 'Point=', 'GlobalX': 'GlobalX=', 'GlobalY': 'GlobalY=', 'GlobalZ': 'GlobalZ=', }
content = self.add_assign_to_fields_of_dataframe(df, d)
table_key = "OBJECT GEOMETRY - POINT COORDINATES"
self.add_content_to_table(table_key, content)
return content
def add_load_patterns(self):
self.etabs.load_patterns.select_all_load_patterns()
table_key = 'Load Pattern Definitions'
cols = ['Name', 'Type', 'SelfWtMult']
df = self.etabs.database.read(table_key, to_dataframe=True, cols=cols)
# remove drift load patterns
filt = df['Type'] == self.etabs.seismic_drift_text
df = df.loc[~filt]
# drift_names = df.loc[filt]['Name'].unique()
df['Type'] = df.Name.apply(get_design_type, args=(self.etabs,))
df.dropna(inplace=True)
# add load cases ! with 2 or more load patterns. Safe define
# this load cases in load patterns!
load_pats = list(df.Name.unique())
all_load_cases = self.etabs.SapModel.LoadCases.GetNameList()[1]
load_cases = set(all_load_cases).difference(load_pats)
import pandas as pd
for load_case in load_cases:
try:
loads = self.etabs.SapModel.LoadCases.StaticLinear.GetLoads(load_case)
n = loads[0]
if n > 1:
type_ = get_design_type(load_case, self.etabs)
if type_ is None:
continue
load_pats = pd.Series([load_case, type_, 0], index=df.columns)
df = df.append(load_pats, ignore_index=True)
except IndexError:
pass
d = {
'Name': 'LoadPat=',
'Type': 'Type=',
'SelfWtMult': 'SelfWtMult=',
}
content = self.add_assign_to_fields_of_dataframe(df, d)
table_key = "LOAD PATTERNS"
self.add_content_to_table(table_key, content)
return content
def add_loadcase_general(self):
table_key = 'Load Case Definitions - Summary'
cols = ['Name', 'Type']
df = self.etabs.database.read(table_key, to_dataframe=True, cols=cols)
filt = df['Type'].isin(('Linear Static', 'Response Spectrum'))
df = df.loc[filt]
df['DesignType'] = df.Name.apply(get_design_type, args=(self.etabs,))
df.dropna(inplace=True)
# Remove drift dynamic loadcases
dynamic_drift_loadcases = self.etabs.get_dynamic_drift_loadcases()
filt = df.Name.isin(dynamic_drift_loadcases)
df = df.loc[~filt]
replacements = {
'Linear Static' : 'LinStatic',
'Response Spectrum' : 'LinStatic',
# 'Modal - Eigen' : 'LinModal',
}
df.replace({'Type' : replacements}, inplace=True)
d = {
'Name': 'LoadCase=',
'Type': 'Type=',
'DesignType' : 'DesignType='
}
content = self.add_assign_to_fields_of_dataframe(df, d)
table_key = "LOAD CASES 01 - GENERAL"
self.add_content_to_table(table_key, content)
return content
def add_modal_loadcase_definitions(self):
table_key = 'Modal Case Definitions - Eigen'
cols = ['Name', 'MaxModes', 'MinModes']
df = self.etabs.database.read(table_key, to_dataframe=True, cols=cols)
df.dropna(inplace=True)
df['InitialCond'] = 'Zero'
df['ModeType'] = 'Eigen'
d = {
'Name': 'LoadCase=',
'MaxModes' : 'MaxModes=',
'MinModes' : 'MinModes=',
'InitialCond' : 'InitialCond=',
'ModeType' : 'ModeType=',
}
content = self.add_assign_to_fields_of_dataframe(df, d)
table_key = "LOAD CASES 04 - MODAL"
self.add_content_to_table(table_key, content)
return content
def add_loadcase_definitions(self):
table_key = 'Load Case Definitions - Linear Static'
cols = ['Name', 'LoadName', 'LoadSF']
df = self.etabs.database.read(table_key, to_dataframe=True, cols=cols)
drifts = self.etabs.load_patterns.get_drift_load_pattern_names()
if drifts:
filt = df['LoadName'].isin(drifts)
df = df.loc[~filt]
filt = df['Name'].isin(drifts)
df = df.loc[~filt]
df.dropna(inplace=True)
d = {
'Name': 'LoadCase=',
'LoadName': 'LoadPat=',
'LoadSF' : 'SF='
}
content = self.add_assign_to_fields_of_dataframe(df, d)
table_key = "LOAD CASES 06 - LOADS APPLIED"
self.add_content_to_table(table_key, content)
return content
def add_response_spectrum_loadcases_and_loadpatts(self):
lcs = self.etabs.load_cases.get_response_spectrum_loadcase_name()
dynamic_drift_loadcases = self.etabs.get_dynamic_drift_loadcases()
content_loadcase = ''
content_loadpatts = ''
for lc in lcs:
if not lc in dynamic_drift_loadcases:
content_loadcase += f"\nLoadCase={lc}\tLoadPat={lc}\tSF=1"
content_loadpatts += f"\nLoadPat={lc}\tType=QUAKE\tSelfWtMult=0"
table_key = "LOAD CASES 06 - LOADS APPLIED"
self.add_content_to_table(table_key, content_loadcase)
table_key = "LOAD PATTERNS"
self.add_content_to_table(table_key, content_loadpatts)
return content_loadcase
def add_point_loads(self):
self.etabs.load_cases.select_all_load_cases()
table_key = "Joint Design Reactions"
cols = ['Label', 'UniqueName', 'OutputCase', 'CaseType', 'FX', 'FY', 'FZ', 'MX', 'MY', 'MZ']
df = self.etabs.database.read(table_key, to_dataframe=True, cols=cols)
drift_names = self.etabs.load_patterns.get_drift_load_pattern_names()
dynamic_drift_loadcases = self.etabs.get_dynamic_drift_loadcases()
drift_names.extend(dynamic_drift_loadcases)
filt = df.OutputCase.isin(drift_names)
df = df.loc[~filt]
filt = df.CaseType.isin(('LinStatic', 'LinRespSpec'))
df = df.loc[filt]
df.UniqueName.fillna(df.Label, inplace=True)
df.drop(columns=['Label', 'CaseType'], inplace=True)
for col in ('FX', 'FY', 'MX', 'MY', 'MZ'):
df[col] = -df[col].astype(float)
try:
df2 = self.etabs.database.get_basepoints_coord_and_dims(df)
df2 = df2.set_index('UniqueName')
df['xdim'] = df['UniqueName'].map(df2['t2'])
df['ydim'] = df['UniqueName'].map(df2['t3'])
# Replace None values with 0 in specific columns
columns_to_replace = ['xdim', 'ydim']
df[columns_to_replace] = df[columns_to_replace].fillna(0)
except (AttributeError, TypeError):
df['xdim'] = 0
df['ydim'] = 0
d = {
'UniqueName': 'Point=',
'OutputCase': 'LoadPat=',
'FX' : 'Fx=',
'FY' : 'Fy=',
'FZ' : 'Fgrav=',
'MX' : 'Mx=',
'MY' : 'My=',
'MZ' : 'Mz=',
'xdim' : 'XDim=',
'ydim' : 'YDim=',
}
content = self.add_assign_to_fields_of_dataframe(df, d)
table_key = "LOAD ASSIGNMENTS - POINT LOADS"
self.add_content_to_table(table_key, content)
return content
def add_load_combinations(
self,
types: Iterable = ('Envelope', 'Linear Add'),
load_combinations: Union[list, bool] = None,
ignore_dynamics : bool = False,
):
self.etabs.load_cases.select_all_load_cases()
table_key = "Load Combination Definitions"
cols = ['Name', 'LoadName', 'Type', 'SF']
df = self.etabs.database.read(table_key, to_dataframe=True, cols=cols)
df.fillna(method='ffill', inplace=True)
# remove dynamic load combinations
if ignore_dynamics:
response_spectrum_loadcases = self.etabs.load_cases.get_loadcase_withtype(4)
if response_spectrum_loadcases:
filt = df['LoadName'].isin(response_spectrum_loadcases)
load_combinations_with_dynamic = df['Name'].loc[filt].unique()
filt = df['Name'].isin(load_combinations_with_dynamic)
df = df.loc[~filt]
filt = df['Type'].isin(types)
df = df.loc[filt]
if load_combinations is not None:
filt = df['Name'].isin(tuple(load_combinations))
df = df.loc[filt]
df.replace({'Type': {'Linear Add': '"Linear Add"'}}, inplace=True)
load_combos_names = self.etabs.database.get_design_load_combinations("concrete")
if not load_combos_names:
load_combos_names = self.etabs.database.get_design_load_combinations("steel")
if not load_combos_names:
load_combos_names = self.etabs.database.get_design_load_combinations("shearwall")
if load_combos_names:
df['strength'] = np.where(df['Name'].isin(load_combos_names), 'Yes', 'No')
else:
df['strength'] = 'No'
d = {
'Name': 'Combo=',
'LoadName': 'Load=',
'Type' : 'Type=',
'SF' : 'SF=',
'strength' : 'DSStrength=',
}
content = self.add_assign_to_fields_of_dataframe(df, d)
table_key = "LOAD COMBINATIONS"
self.add_content_to_table(table_key, content)
return content
def create_f2k(self):
yield ('Write Points Coordinates ...', 5, 1)
self.add_point_coordinates()
self.add_grids()
yield ('Add Load Patterns ...', 20, 2)
self.add_load_patterns()
yield ('Add Load Cases ...', 30, 3)
self.add_loadcase_general()
# self.add_modal_loadcase_definitions()
self.add_loadcase_definitions()
self.add_response_spectrum_loadcases_and_loadpatts()
yield ('Add Loads ...', 50, 4)
self.add_point_loads()
yield ('Add Load Combinations ...', 70, 5)
self.add_load_combinations()
yield (f'Successfully Write {self.output_f2k_path} ...', 100, 6)
self.write()
@staticmethod
def add_assign_to_fields_of_dataframe(
df,
assignment : dict,
content : bool = True,
):
'''
adding a prefix to each member of dataframe for example:
LIVE change to Type=LIVE
content : if content is True, the string of dataframe return
'''
for col, pref in assignment.items():
df[col] = pref + df[col].astype(str)
if content:
return df.to_string(header=False, index=False)
return df
def get_design_type(case_name, etabs):
'''
get a load case name and return design type of it appropriate
to write in f2k file
'''
map_dict = {
1 : 'DEAD',
2 : '"SUPER DEAD"',
3 : 'LIVE',
4 : '"REDUCIBLE LIVE"',
5 : 'QUAKE',
6 : 'WIND',
7 : 'SNOW',
8 : 'OTHER',
11 : 'LIVE',
37 : None,
}
type_num = etabs.SapModel.LoadCases.GetTypeOAPI_1(case_name)[2]
design_type = map_dict.get(type_num, 'OTHER')
return design_type