Import Hydrogrph from and excel file
Import Hydrogrph from and excel file
(OP)
Is there a way to import hydrograph data from an exel file ? If so, how do you handle seperate storm events ( ie 10-year, 100-year ) in the same model ?
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Contact USThanks. We have received your request and will respond promptly. Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting Guidelines |
Import Hydrogrph from and excel file
|
Join your peers on the Internet's largest technical engineering professional community.
It's easy to join and it's free.
Here's Why Members Love Eng-Tips Forums:
Register now while it's still free!
Already a member? Close this window and log in.
RE: Import Hydrogrph from and excel file
If you do need to import the data (perhaps from another runoff model?) there are several ways to use a "link" to accomplish the task:
1) If you have only a few flow values, you can enter the data manually into the link: Just drag a link onto the diagram, double-click to edit, and select "Enter hydrograph manually." Select the "Manual" tab and enter the data.
2) To avoid typing the values, you can right-click the manual entry table and select "Load From File". You'll need a CSV file with the flow values in the first column.
3) If you want to specify a different hydrograph for several events, then you'll need to create a special hydrograph file with a .HCE extension. It's a plain text file that contains a complete hydrograph for each event, as shown below. Just follow this model, omitting the comments I've added to each line.
FileUnits=English
Comment=This is a sample multi-event hydrograph file
[hydrograph] // marks the start of each event
Name=Outflow // all hydrographs should have the same name
Event=2-Year // event name MUST match an event in the project
Area=8733780 // inflow area in square-feet (optional)
t0=32400 // hydrograph start time in seconds
dt=360 // hydrograph time increment in seconds
Flow= 0 1 4 8.2 9 8 // flow values in CFS
Flow= 7.5 4 3.5 3 // use as many lines as required
Flow= 2.85 2 0.9 .6 0 // any number of values per line
[hydrograph] // repeat the same format for each event
Name=Outflow
Event=5-Year
Area=8733780
t0=32400
dt=360
Flow= 0 1 4 8.2 9 8
Flow= 7.5 4 3 2 1 0
After creating the HCE file, edit the link and select "Import Hydrograph from file." Click the "File" tab and use the Browse button to select the file. Click OK to save the link. The link will now produce the corresponding hydrograph as you change the event selection in HydroCAD.
For further details on the HCE file format please see www.hydrocad.net/filetypes.htm
RE: Import Hydrogrph from and excel file