Share

Deliverables

During an automation run in ASBD, the following files are created as deliverables:

Item Folder Description
Output json Json This is the JSON output file that contains key values from the analysis run by each command. It is referenced by the outputFilename JSON item.
Log Log This is the text file that contains the progress log of the automation run. It is referenced by the logFilename JSON item.
ASBD model Model This is the binary file for the ASBD model. It is referenced by the modelFilename JSON item.
Design report Report This is the design report generated during the automation run. It is saved as a PDF file and is referenced by the reportFilename JSON item.
Image Report\Graphics_* The graphics folder contains the graphic files in PNG format that are referenced in the output JSON file. Each automation run has a unique graphics folder name.

Output

The output content depends on the type of analysis being performed. For design beams it typically includes critical effects, such as:

{
  "parameters": {
    "type": "LIVE_BENDING",
    "limitState": "SLS",
    "loadCombination": 2,
    "classType": 2,
    "componentType": "GIRDER",
    "fibreType": "TOP",
    "stressType": "MIN",
    "loadOriginType": "MAX_NEG"
  },
  "spanPos": "23.438m",
  "spanPosRatio": 0.963,
  "design": "2.57MPa",
  "allowable": "-3.71MPa",
  "ratio": 0.69,
  "graphicsFile": "Graphics_20019210\\LIVE_BENDING_SLS_(Live_load_BM_2___Max_Hog)_3-1.png"
},
{
  "parameters": {
    "type": "ERECTION",
    "limitState": "SLS",
    "loadCombination": 1,
    "classType": 2,
    "componentType": "GIRDER"
  },
  "spanPos": "21.438m",
  "spanPosRatio": 0.88,
  "design": "-2.53MPa",
  "allowable": "-3.71MPa",
  "ratio": 0.68,
  "graphicsFile": "Graphics_20019210\\ERECTION_SLS_(Erection_of_beam)_4-1.png"
}

Here is an example for Design Section Shear analysis.

{
  "commands" : [
    {
      "commandID" : "DS_C1",
      "action" : {
        "status" : "OK",
        "results" : {
          "sectionRef" : "SS1",
          "analysisType" : "SHEAR",
          "limitState" : "LS_ACCIDENTAL",
          "loadcase" : "SL1: Pile at 5.2m depth",
          "cracked" : "true",
          "lambda1" : "0.8503",
          "lambda2" : "1",
          "shearWidth" : "950.0mm",
          "shearDepth" : "950.0mm",
          "V_Rd,max" : "8091.92kN",
          "V_Ed" : "211.50kN",
          "Asw_per_s" : "5157.0mm\u00B2\/m",
          "z_over_d": "1.112"
        }
      }
    }
  ]
}

The values in the output can be presented either as numerical values or as formatted strings that include the corresponding units. The numerical values are output in default metric units unless the control settings item useProjectUnits ($id="#/properties/control/properties/settings/properties/userFormat/properties/useProjectUnits") is defined and set to true. In this case, the units are set according to the project.

Log

The progress log is a text file that provides a detailed record of the model data and commands as they are processed during the automation run. It also includes any warnings or errors encountered during that process. The log file is useful for troubleshooting and understanding the execution flow of the automation.

Log

Report

The design report is an optional output in PDF format that provides a comprehensive overview of the calculations performed for a section or beam. It includes detailed information on the design calculations, such as critical effects, performance ratios, and other relevant parameters. The report often includes hyperlinks that allow easy navigation between the summary table and the detailed calculations, providing a comprehensive understanding of the design analysis.

Design Report

Was this information helpful?