This video on the RAS Solution YouTube channel presents new capabilities in HEC-RAS 6.0 beta for developing flood hazard maps. Below are some sample scripts for copying and pasting into the RASter calculator. View the video on YouTube to submit your comments to suggest any additional scripts to be incorporated here.
‘——————————————————- ‘ rasscript for Flood Hazard mapping based on ‘ WRL Technical Report 2014/07 Flood Hazard ‘ by G P Smith, E K Davey and R J Cox ‘ UNSW Water Research Laboratory ‘ https://knowledge.aidr.org.au/media/2334/wrl-flood-hazard-techinical-report-september-2014.pdf ‘ As cited in ARR 2019 Book 6: Flood Hydraulics Chapter 7: Safety Design Criteria ‘ http://book.arr.org.au.s3-website-ap-southeast-2.amazonaws.com/ ‘ Figure 5-5 and Table 5-2 ‘ Requirements: Terrain, Depth, ‘d’ and Velocity, ‘v’ ‘——————————————————-
If d = NoData OrElse v = NoData Then Output = NoData ElseIf d > 4 Or v > 4 Or d*v > 4 Then Output = 6 ‘H6 unsafe for people, vehicles & all buildings ElseIf d > 2 Or v>2 Or d*v>1 Then Output = 5 ‘H5 unsafe for people, vehicles & some buildings ElseIf d > 1.2 Or d * v > 0.6 Then Output = 4 ‘H4 unsafe for people & vehicle ElseIf d > 0.5 Then Output = 3 ‘H3 unsafe for vehicle and vulnerable people ElseIf d > 0.3 Or d * v > 0.3 Then Output = 2 ‘H2 unsafe for small vehicles Else Output = 1 ‘H1 generally safe for people, vehicles, & buildings End If