-
Notifications
You must be signed in to change notification settings - Fork 3
TagRamp
lukas edited this page May 19, 2017
·
1 revision
Table of Contents
| attribute | role | description |
|---|---|---|
id |
optional | default name of the file: identifier of the ramp |
file |
required | file that contains at least one line of comma-seperated ramp data in the format time, value, optional comment
|
Ramp data is read from a passed comma-seperated file and written in the FDS input file using multiple RAMP statements.
Given a text file test_ramp.txt with the content
20.0, 0.45, This
377.0, 0.6, will be
677.0, 0.85, ignored.the tag
<ramp id="'fromfile'" file="test_ramp.txt" /> produces the following FDS statements:
&RAMP ID='fromfile' T=20.000000, F=0.450000 /
&RAMP ID='fromfile' T=377.000000, F=0.600000 /
&RAMP ID='fromfile' T=677.000000, F=0.850000 /