2.3.2. Reading the Log File
The sequence of tasks carried out by the backend applications is outlined in the log file produced by the workflow. For local runs, this log is displayed in the command terminal and is reproduced in a file named log.txt
in the results/
directory. For remote runs through Tapis, this log file is called launcher.out
in the job archive folder on DesignSafe. This guide will explain how to understand the statements printed in the log file.
The following is an example log file for a successful workflow run. The workflow can be broken down into the following sections:
Read the configuration file:
lines 12-13: Identifies the path to the configuration file, which specifies the job details, and the application registry file, which specifies all available applications.
line 16-62: Reads the application registry file and displays all available applications.
line 64-85: Reads the configuration file and displays the units, local application directory, remote application directory, reference directory, and the applications chosen for each workflow step. Any workflow steps which are skipped (excluded from the configuration file) are also listed here.
Pre-process building and event data:
line 93: Python command for executing the Building application, creating the BIM files for each building asset.
python "C:/rWHALE/applications/createBIM/CSV_to_BIM/CSV_to_BIM.py" "--buildingFile" "C:/rWHALE/earthquake_example/results/buildings1-2.json" "--Min" "1" "--Max" "2" "--buildingSourceFile" "C:/rWHALE/earthquake_example/input_data/input_params.csv" "--getRV"
line 103: Python command for executing the RegionalMapping application, assigning events to each of the building assets.
python "C:/rWHALE/applications/performRegionalMapping/NearestNeighborEvents/NNE.py" "--buildingFile" "C:/rWHALE/earthquake_example/results/buildings1-2.json" "--filenameEVENTgrid" "C:/rWHALE/earthquake_example/input_data/records/EventGrid.csv" "--samples" "2" "--neighbors" "1"
Set up and run simulations for each building asset:
line 111: Starts with the first building asset. In this first pass, the EVENT, SAM, EDP, SIM files corresponding to “1-BIM.json” are created.
line 118: Python command for executing the Event application, creating the EVENT file for the building asset.
python "C:/rWHALE/applications/createEVENT/SimCenterEvent/SimCenterEvent.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--pathEventData" "C:/rWHALE/earthquake_example/input_data/records/" "--getRV"line 126: Python command for executing the Modeling application, creating the SAM file for the built asset.
python "C:/rWHALE/applications/createSAM/openSeesPyInput/OpenSeesPyInput.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--mainScript" "cantilever.py" "--modelPath" "C:/rWHALE/earthquake_example/input_data/model/" "--ndm" "3" "--dofMap" "1,2,3" "--getRV"line 134: Python command for executing the EDP application, creating the EDP file for the building asset.
python "C:/rWHALE/applications/createEDP/userEDP_R/UserDefinedEDP.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--filenameEDP" "EDP.json" "--EDPspecs" "C:/rWHALE/earthquake_example/input_data/EDP_specs.json" "--getRV"line 142: Python command for executing the Simulation application, creating the SIM file for the building asset.
python "C:/rWHALE/applications/performSIMULATION/openSeesPy/OpenSeesPySimulation.py" "--filenameBIM" "1-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json" "--getRV"lines 153-157: Commands which are written to the workflow driver file. In a “second pass” through the workflow, these commands are executed by running the workflow driver file.
python "C:/rWHALE/applications/createBIM/CSV_to_BIM/CSV_to_BIM.py" "--buildingFile" "C:/rWHALE/earthquake_example/results/buildings1-2.json" "--Min" "1" "--Max" "2" "--buildingSourceFile" "C:/rWHALE/earthquake_example/input_data/input_params.csv" python "C:/rWHALE/applications/createEVENT/SimCenterEvent/SimCenterEvent.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--pathEventData" "C:/rWHALE/earthquake_example/input_data/records/" python "C:/rWHALE/applications/createSAM/openSeesPyInput/OpenSeesPyInput.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--mainScript" "cantilever.py" "--modelPath" "C:/rWHALE/earthquake_example/input_data/model/" "--ndm" "3" "--dofMap" "1,2,3" python "C:/rWHALE/applications/createEDP/userEDP_R/UserDefinedEDP.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--filenameEDP" "EDP.json" "--EDPspecs" "C:/rWHALE/earthquake_example/input_data/EDP_specs.json" python "C:/rWHALE/applications/performSIMULATION/openSeesPy/OpenSeesPySimulation.py" "--filenameBIM" "1-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json"line 165: Python command for executing the UQ application, which executes the commands in the workflow driver file to sample random variables and perform the response simulation. This command creates the EDP output file for the building asset.
python "C:/rWHALE/applications/performUQ/dakota/DakotaFEM.py" "--filenameBIM" "1-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json" "--driverFile" "driver" "--method" "LHS" "--samples" "2" "--type" "UQ" "--concurrency" "1" "--keepSamples" "True" "--runType" "run"line 189: dakota command which calls on DAKOTA to execute the UQ application.
running Dakota: dakota -input dakota.in -output dakota.out -error dakota.errline 198: Python command for executing the DL application, which outputs the DM.csv and DV.csv for the building asset.
python "C:/rWHALE/applications/performDL/pelicun/DL_calculation.py" "--filenameDL" "1-BIM.json" "--filenameEDP" "response.csv" "--outputEDP" "EDP.csv" "--outputDM" "DM.csv" "--outputDV" "DV.csv" "--DL_Method" "HAZUS MH EQ" "--Realizations" "2" "--detailed_results" "False" "--log_file" "True" "--coupled_EDP" "True" "--event_time" "off" "--ground_failure" "False"line 213: Continues to the second building asset (“2-BIM.json”) and repeats the same workflow steps.
Aggregate outputs for all building assets:
line 315: Aggregates results to create the EDP, DM, and DV output files.
----------------------------------------------------------- Collecting damage and loss results Damage and loss results collected successfully. -----------------------------------------------------------
The full log file is shown below:
1RDT workflow
2
32020-11-16T18:55:07Z System information
4
52020-11-16T18:55:07Z python: 3.7.9 (default, Aug 31 2020, 17:10:11) [MSC v.1916 64 bit (AMD64)]
62020-11-16T18:55:07Z numpy: 1.19.2
72020-11-16T18:55:07Z pandas: 1.1.2
82020-11-16T18:55:07Z -----------------------------------------------------------
92020-11-16T18:55:07Z Started running the workflow script
102020-11-16T18:55:07Z -----------------------------------------------------------
112020-11-16T18:55:07Z Inputs provided:
122020-11-16T18:55:07Z workflow input file: C:/rWHALE/earthquake_example/rWHALE_config.json
132020-11-16T18:55:07Z application registry file: C:/rWHALE/applications/Workflow/WorkflowApplications.json
142020-11-16T18:55:07Z run type: run
152020-11-16T18:55:07Z -----------------------------------------------------------
162020-11-16T18:55:07Z Parsing application registry file
172020-11-16T18:55:07Z Loading the json file...
182020-11-16T18:55:07Z OK
192020-11-16T18:55:07Z Collecting application data...
202020-11-16T18:55:07Z OK
212020-11-16T18:55:07Z Available applications:
222020-11-16T18:55:07Z Building : GenericBimDatabase
232020-11-16T18:55:07Z Building : GeoJSON_to_BIM
242020-11-16T18:55:07Z Building : CSV_to_BIM
252020-11-16T18:55:07Z RegionalMapping : NearestNeighborEvents
262020-11-16T18:55:07Z Event : SimCenterEvent
272020-11-16T18:55:07Z Event : ExistingSimCenterEvents
282020-11-16T18:55:07Z Event : ExistingPEER_Events
292020-11-16T18:55:07Z Event : Site Response
302020-11-16T18:55:07Z Event : HazardBasedEvent
312020-11-16T18:55:07Z Event : DEDM_HRP
322020-11-16T18:55:07Z Event : LowRiseTPU
332020-11-16T18:55:07Z Event : WindTunnelExperiment
342020-11-16T18:55:07Z Event : StochasticWindWittigSinha
352020-11-16T18:55:07Z Event : StochasticGroundMotion
362020-11-16T18:55:07Z Event : CFDEvent
372020-11-16T18:55:07Z Event : NNGM
382020-11-16T18:55:07Z Event : LLNL-SW4
392020-11-16T18:55:07Z Event : ASCE7_WindSpeed
402020-11-16T18:55:07Z Event : pointWindSpeed
412020-11-16T18:55:07Z Modeling : MDOF-LU
422020-11-16T18:55:07Z Modeling : OpenSeesInput
432020-11-16T18:55:07Z Modeling : OpenSeesPyInput
442020-11-16T18:55:07Z Modeling : MDOF_BuildingModel
452020-11-16T18:55:07Z Modeling : SteelBuildingModel
462020-11-16T18:55:07Z EDP : StandardEarthquakeEDP
472020-11-16T18:55:07Z EDP : StandardEarthquakeEDP_R
482020-11-16T18:55:07Z EDP : StandardWindEDP
492020-11-16T18:55:07Z EDP : StandardGMT_EDP
502020-11-16T18:55:07Z EDP : UserDefinedEDP
512020-11-16T18:55:07Z EDP : UserDefinedEDP_R
522020-11-16T18:55:07Z EDP : SimpleEDP
532020-11-16T18:55:07Z Simulation : OpenSees-Simulation
542020-11-16T18:55:07Z Simulation : OpenSeesPy-Simulation
552020-11-16T18:55:07Z Simulation : ExtractPGA
562020-11-16T18:55:07Z Simulation : OpenSees-Simulation_R
572020-11-16T18:55:07Z Simulation : IMasEDP
582020-11-16T18:55:07Z UQ : Dakota-UQ
592020-11-16T18:55:07Z UQ : Dakota-FEM
602020-11-16T18:55:07Z UQ : Dakota-UQ1
612020-11-16T18:55:07Z DL : pelicun
622020-11-16T18:55:07Z Successfully parsed application registry
632020-11-16T18:55:07Z -----------------------------------------------------------
642020-11-16T18:55:07Z Parsing workflow input file
652020-11-16T18:55:07Z Loading the json file...
662020-11-16T18:55:07Z OK
672020-11-16T18:55:07Z The following units were specified:
682020-11-16T18:55:07Z force: kips
692020-11-16T18:55:07Z length: in
702020-11-16T18:55:07Z time: sec
712020-11-16T18:55:07Z Run dir : C:/rWHALE/earthquake_example/results
722020-11-16T18:55:07Z Local applications dir : C:/rWHALE/
732020-11-16T18:55:08Z Remote applications dir : C:/rWHALE/
742020-11-16T18:55:08Z Reference dir : C:/rWHALE/earthquake_example/input_data/
752020-11-16T18:55:08Z No RegionalEvent among requested applications.
762020-11-16T18:55:08Z Requested workflow:
772020-11-16T18:55:08Z Event : SimCenterEvent
782020-11-16T18:55:08Z Building : CSV_to_BIM
792020-11-16T18:55:08Z RegionalMapping : NearestNeighborEvents
802020-11-16T18:55:08Z Modeling : OpenSeesPyInput
812020-11-16T18:55:08Z EDP : UserDefinedEDP_R
822020-11-16T18:55:08Z Simulation : OpenSeesPy-Simulation
832020-11-16T18:55:08Z UQ : Dakota-UQ
842020-11-16T18:55:08Z DL : pelicun
852020-11-16T18:55:08Z Successfully parsed workflow inputs
862020-11-16T18:55:08Z -----------------------------------------------------------
872020-11-16T18:55:08Z Initializing the working directory.
882020-11-16T18:55:08Z Working directory successfully initialized.
892020-11-16T18:55:08Z -----------------------------------------------------------
902020-11-16T18:55:08Z Creating files for individual buildings
912020-11-16T18:55:08Z Creating initial building files...
92
93python "C:/rWHALE/applications/createBIM/CSV_to_BIM/CSV_to_BIM.py" "--buildingFile" "C:/rWHALE/earthquake_example/results/buildings1-2.json" "--Min" "1" "--Max" "2" "--buildingSourceFile" "C:/rWHALE/earthquake_example/input_data/input_params.csv" "--getRV"
94
952020-11-16T18:55:09Z Output:
96
97
98
992020-11-16T18:55:09Z Building files successfully created.
1002020-11-16T18:55:09Z -----------------------------------------------------------
1012020-11-16T18:55:09Z Creating regional mapping...
102
103python "C:/rWHALE/applications/performRegionalMapping/NearestNeighborEvents/NNE.py" "--buildingFile" "C:/rWHALE/earthquake_example/results/buildings1-2.json" "--filenameEVENTgrid" "C:/rWHALE/earthquake_example/input_data/records/EventGrid.csv" "--samples" "2" "--neighbors" "1"
104
1052020-11-16T18:55:12Z Output:
106
107
108
1092020-11-16T18:55:12Z Regional mapping successfully created.
1102020-11-16T18:55:12Z -----------------------------------------------------------
1112020-11-16T18:55:12Z {'id': '1', 'file': '1-BIM.json'}
1122020-11-16T18:55:12Z Initializing the simulation directory
1132020-11-16T18:55:12Z Simulation directory successfully initialized.
1142020-11-16T18:55:12Z -----------------------------------------------------------
1152020-11-16T18:55:12Z Creating files with random variables
1162020-11-16T18:55:12Z Running Event app for RV...
117
118python "C:/rWHALE/applications/createEVENT/SimCenterEvent/SimCenterEvent.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--pathEventData" "C:/rWHALE/earthquake_example/input_data/records/" "--getRV"
119
1202020-11-16T18:55:12Z Output:
121
122
123
1242020-11-16T18:55:12Z Running Modeling app for RV...
125
126python "C:/rWHALE/applications/createSAM/openSeesPyInput/OpenSeesPyInput.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--mainScript" "cantilever.py" "--modelPath" "C:/rWHALE/earthquake_example/input_data/model/" "--ndm" "3" "--dofMap" "1,2,3" "--getRV"
127
1282020-11-16T18:55:12Z Output:
129
130
131
1322020-11-16T18:55:12Z Running EDP app for RV...
133
134python "C:/rWHALE/applications/createEDP/userEDP_R/UserDefinedEDP.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--filenameEDP" "EDP.json" "--EDPspecs" "C:/rWHALE/earthquake_example/input_data/EDP_specs.json" "--getRV"
135
1362020-11-16T18:55:13Z Output:
137
138
139
1402020-11-16T18:55:13Z Running Simulation app for RV...
141
142python "C:/rWHALE/applications/performSIMULATION/openSeesPy/OpenSeesPySimulation.py" "--filenameBIM" "1-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json" "--getRV"
143
1442020-11-16T18:55:13Z Output:
145
146
147
1482020-11-16T18:55:13Z Files with random variables successfully created.
1492020-11-16T18:55:13Z -----------------------------------------------------------
1502020-11-16T18:55:13Z Creating the workflow driver file
1512020-11-16T18:55:13Z Workflow driver script:
152
153python "C:/rWHALE/applications/createBIM/CSV_to_BIM/CSV_to_BIM.py" "--buildingFile" "C:/rWHALE/earthquake_example/results/buildings1-2.json" "--Min" "1" "--Max" "2" "--buildingSourceFile" "C:/rWHALE/earthquake_example/input_data/input_params.csv"
154python "C:/rWHALE/applications/createEVENT/SimCenterEvent/SimCenterEvent.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--pathEventData" "C:/rWHALE/earthquake_example/input_data/records/"
155python "C:/rWHALE/applications/createSAM/openSeesPyInput/OpenSeesPyInput.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--mainScript" "cantilever.py" "--modelPath" "C:/rWHALE/earthquake_example/input_data/model/" "--ndm" "3" "--dofMap" "1,2,3"
156python "C:/rWHALE/applications/createEDP/userEDP_R/UserDefinedEDP.py" "--filenameBIM" "1-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--filenameEDP" "EDP.json" "--EDPspecs" "C:/rWHALE/earthquake_example/input_data/EDP_specs.json"
157python "C:/rWHALE/applications/performSIMULATION/openSeesPy/OpenSeesPySimulation.py" "--filenameBIM" "1-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json"
158
159
1602020-11-16T18:55:13Z Workflow driver file successfully created.
1612020-11-16T18:55:13Z -----------------------------------------------------------
1622020-11-16T18:55:13Z Running response simulation
1632020-11-16T18:55:13Z Simulation command:
164
165python "C:/rWHALE/applications/performUQ/dakota/DakotaFEM.py" "--filenameBIM" "1-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json" "--driverFile" "driver" "--method" "LHS" "--samples" "2" "--type" "UQ" "--concurrency" "1" "--keepSamples" "True" "--runType" "run"
166
1672020-11-16T18:55:18Z Output:
168
169
170
171Parsing random variables...
172
1731-BIM.json:
174
175EVENT.json:
176
177 eventID | discrete set=['RSN1737x00000', 'RSN707x00001']
178
179SAM.json:
180
181ERROR: SIM.json file not found.
182
183EDP.json:
184
185['RSN1737x00000', 'RSN707x00001']
186
1872
188
189running Dakota: dakota -input dakota.in -output dakota.out -error dakota.err
190
191
192
1932020-11-16T18:55:18Z Response simulation finished successfully.
1942020-11-16T18:55:18Z -----------------------------------------------------------
1952020-11-16T18:55:18Z Running damage and loss assessment
1962020-11-16T18:55:18Z Damage and loss assessment command:
197
198python "C:/rWHALE/applications/performDL/pelicun/DL_calculation.py" "--filenameDL" "1-BIM.json" "--filenameEDP" "response.csv" "--outputEDP" "EDP.csv" "--outputDM" "DM.csv" "--outputDV" "DV.csv" "--DL_Method" "HAZUS MH EQ" "--Realizations" "2" "--detailed_results" "False" "--log_file" "True" "--coupled_EDP" "True" "--event_time" "off" "--ground_failure" "False"
199
2002020-11-16T18:55:18Z First line of DL_calculation
201
2022020-11-16T18:55:20Z Initializing pelicun calculation...
203
204WARNING No loss model defined in the BIM file. Trying to auto-populate.
205
206start creating the edp file
207
2082020-11-16T18:55:21Z pelicun calculation completed.
209
210
2112020-11-16T18:55:22Z Damage and loss assessment finished successfully.
2122020-11-16T18:55:22Z -----------------------------------------------------------
2132020-11-16T18:55:22Z {'id': '2', 'file': '2-BIM.json'}
2142020-11-16T18:55:22Z Initializing the simulation directory
2152020-11-16T18:55:22Z Simulation directory successfully initialized.
2162020-11-16T18:55:22Z -----------------------------------------------------------
2172020-11-16T18:55:22Z Creating files with random variables
2182020-11-16T18:55:22Z Running Event app for RV...
219
220python "C:/rWHALE/applications/createEVENT/SimCenterEvent/SimCenterEvent.py" "--filenameBIM" "2-BIM.json" "--filenameEVENT" "EVENT.json" "--pathEventData" "C:/rWHALE/earthquake_example/input_data/records/" "--getRV"
221
2222020-11-16T18:55:22Z Output:
223
224
225
2262020-11-16T18:55:22Z Running Modeling app for RV...
227
228python "C:/rWHALE/applications/createSAM/openSeesPyInput/OpenSeesPyInput.py" "--filenameBIM" "2-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--mainScript" "cantilever.py" "--modelPath" "C:/rWHALE/earthquake_example/input_data/model/" "--ndm" "3" "--dofMap" "1,2,3" "--getRV"
229
2302020-11-16T18:55:22Z Output:
231
232
233
2342020-11-16T18:55:22Z Running EDP app for RV...
235
236python "C:/rWHALE/applications/createEDP/userEDP_R/UserDefinedEDP.py" "--filenameBIM" "2-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--filenameEDP" "EDP.json" "--EDPspecs" "C:/rWHALE/earthquake_example/input_data/EDP_specs.json" "--getRV"
237
2382020-11-16T18:55:22Z Output:
239
240
241
2422020-11-16T18:55:22Z Running Simulation app for RV...
243
244python "C:/rWHALE/applications/performSIMULATION/openSeesPy/OpenSeesPySimulation.py" "--filenameBIM" "2-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json" "--getRV"
245
2462020-11-16T18:55:23Z Output:
247
248
249
2502020-11-16T18:55:23Z Files with random variables successfully created.
2512020-11-16T18:55:23Z -----------------------------------------------------------
2522020-11-16T18:55:23Z Creating the workflow driver file
2532020-11-16T18:55:23Z Workflow driver script:
254
255python "C:/rWHALE/applications/createBIM/CSV_to_BIM/CSV_to_BIM.py" "--buildingFile" "C:/rWHALE/earthquake_example/results/buildings1-2.json" "--Min" "1" "--Max" "2" "--buildingSourceFile" "C:/rWHALE/earthquake_example/input_data/input_params.csv"
256python "C:/rWHALE/applications/createEVENT/SimCenterEvent/SimCenterEvent.py" "--filenameBIM" "2-BIM.json" "--filenameEVENT" "EVENT.json" "--pathEventData" "C:/rWHALE/earthquake_example/input_data/records/"
257python "C:/rWHALE/applications/createSAM/openSeesPyInput/OpenSeesPyInput.py" "--filenameBIM" "2-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--mainScript" "cantilever.py" "--modelPath" "C:/rWHALE/earthquake_example/input_data/model/" "--ndm" "3" "--dofMap" "1,2,3"
258python "C:/rWHALE/applications/createEDP/userEDP_R/UserDefinedEDP.py" "--filenameBIM" "2-BIM.json" "--filenameEVENT" "EVENT.json" "--filenameSAM" "SAM.json" "--filenameEDP" "EDP.json" "--EDPspecs" "C:/rWHALE/earthquake_example/input_data/EDP_specs.json"
259python "C:/rWHALE/applications/performSIMULATION/openSeesPy/OpenSeesPySimulation.py" "--filenameBIM" "2-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json"
260
261
2622020-11-16T18:55:23Z Workflow driver file successfully created.
2632020-11-16T18:55:23Z -----------------------------------------------------------
2642020-11-16T18:55:23Z Running response simulation
2652020-11-16T18:55:23Z Simulation command:
266
267python "C:/rWHALE/applications/performUQ/dakota/DakotaFEM.py" "--filenameBIM" "2-BIM.json" "--filenameSAM" "SAM.json" "--filenameEVENT" "EVENT.json" "--filenameEDP" "EDP.json" "--filenameSIM" "SIM.json" "--driverFile" "driver" "--method" "LHS" "--samples" "2" "--type" "UQ" "--concurrency" "1" "--keepSamples" "True" "--runType" "run"
268
2692020-11-16T18:55:28Z Output:
270
271
272
273Parsing random variables...
274
2752-BIM.json:
276
277EVENT.json:
278
279 eventID | discrete set=['RSN1737x00000', 'RSN707x00001']
280
281SAM.json:
282
283ERROR: SIM.json file not found.
284
285EDP.json:
286
287['RSN1737x00000', 'RSN707x00001']
288
2892
290
291running Dakota: dakota -input dakota.in -output dakota.out -error dakota.err
292
293
294
2952020-11-16T18:55:28Z Response simulation finished successfully.
2962020-11-16T18:55:28Z -----------------------------------------------------------
2972020-11-16T18:55:28Z Running damage and loss assessment
2982020-11-16T18:55:28Z Damage and loss assessment command:
299
300python "C:/rWHALE/applications/performDL/pelicun/DL_calculation.py" "--filenameDL" "2-BIM.json" "--filenameEDP" "response.csv" "--outputEDP" "EDP.csv" "--outputDM" "DM.csv" "--outputDV" "DV.csv" "--DL_Method" "HAZUS MH EQ" "--Realizations" "2" "--detailed_results" "False" "--log_file" "True" "--coupled_EDP" "True" "--event_time" "off" "--ground_failure" "False"
301
3022020-11-16T18:55:28Z First line of DL_calculation
303
3042020-11-16T18:55:31Z Initializing pelicun calculation...
305
306WARNING No loss model defined in the BIM file. Trying to auto-populate.
307
308start creating the edp file
309
3102020-11-16T18:55:32Z pelicun calculation completed.
311
312
3132020-11-16T18:55:32Z Damage and loss assessment finished successfully.
3142020-11-16T18:55:32Z -----------------------------------------------------------
3152020-11-16T18:55:32Z Collecting damage and loss results
3162020-11-16T18:55:32Z Damage and loss results collected successfully.
3172020-11-16T18:55:32Z -----------------------------------------------------------