Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Now, it's ok if you don't have all of the above information for your buildings since the more detail you have about your building means you can be more explicit in mapping your fragilities to your buildings in the damage analysis. Only in the more advanced analyses will MAEviz start requiring some of those other attributes (e.g. estimating structural damage cost requires the APPR_BLDG column since the cost of the structure needs to be known). However, all of these columns need to be present, even if they contain no data because MAEviz will expect all of the columns to be there. In the next version of MAEviz, this restriction of all columns being present, even with no data, should be eliminated.

Fragility

...

Mapping

This section will require a very basic understanding of XML and is something that we can help the user with putting together if you contact us by email. The basic concept behind the fragility mapping is to tell MAEviz which fragilities should be used with which "objects". In the case of a building dataset, which fragilities should be mapped to which buildings. The mapping file allows you to use a specific set of rules to map fragilities to buildings (e.g. if a building has a structure type S1 and has 6 stories, use fragility curve with ID SF_S1_1).

Using the example below, we'll go through the various parts of the fragility mapping.

Code Block
xml
xml

<match-filter-map>
  <property-match>
    <success-value>

      <map>
        <entry key="Non-Retrofit Fragility ID Code" value="SF_S1_1"/>
      </map>
    </success-value>
    <filter>
      <statement>
        <rule>int no_stories GE 4</rule>
        <rule>int no_stories LE 7</rule>
        <rule>String struct_typ EQUALS S1</rule>
      </statement>
    </filter>
  </property-match>
</match-filter-map>

In the section that says <map> </map> is where the fragility identifier is specified. Where it says key is for MAEviz internal use and that must match exactly because the "Non-Retrofit Fragility ID Code" tells MAEviz this is the as-built fragility for the specified building. The second part where it says value is a fragility ID in your fragility dataset, this must match a fragility in your fragility dataset.

In the next section of the example above you will see some <rule> </rule> tags between <statement> </statement> tags. These are the rules to determine if SF_S1_1 fragility should be used for a particular building. If you look at the first rule where it says:

<rule>int no_stories GE 4</rule>

The first part that says int tells MAEviz what type of data to look for. The second part where it says no_stories tells MAEviz which column to look at, so in this case, there should be a column in the building dataset called no_stories. For reference, if you look in the previous section it was specified that the column no_stories should be of type integer. Now, the third part tells MAEviz what type of comparison to perform. In this case, we are looking for something that is greater than or equal to (GE) to 4. For our building to pass this first rule, it must have a no_stories column with a value greater than or equal to 4. If it matches, MAEviz will check the next rule, in this case, the next rule states that there must be a column called no_stories that is of type integer, with a value less than or Equal to 7 (LE). In order to use this set of fragilities a building must match all of the rules between <map> </map>. If any fail, MAEviz will move onto the next <property-match> </property-match> tags that contain the next fragility curve and its rules.

You can make the rules as complex or as simple as you want. You could simply have a rule:

<rule>String STRUCT_TYP EQUALS S1</rule>

In this case, we are looking at a column called STRUCT_TYP (structure type) with a structure type equal to S1. If it matches, then use the fragility we specify.

If you need to create a fragility mapping file that maps your fragilities to your building dataset, you just need to come up with a list of rules that maps a fragilities to buildings and save them to an XML file. After creating the file, you need to ingest it into MAEviz. Ingesting data into MAEviz will be detailed in the next sections.

Launch MAEviz

The default installation directory for MAEviz is a folder with the same name, "MAEviz" so you should be able to launch the software by going to Start -> Programs -> MAEviz.

...