'---------------------------------------------- '---------Creation Information----------------- '---------------------------------------------- ' 'Name: run_naut 'Author: Cindy How 'Date: 6/97 ' '---------------------------------------------- '------------Purpose/Description--------------- '---------------------------------------------- ' 'This script will run the ISBL portion of the 'naUTilus program and bring the resulting 'naUTilus output into the project. ' '---------------------------------------------- '--------------------Input--------------------- '---------------------------------------------- ' '1. isbl.in file - naUTilus input file created ' by running WRITEINPUT. '2. isbl.exe - naUTilus code for ISBL portion ' of the network. This must be in the same ' directory as the project. ' '---------------------------------------------- '-------------------Output--------------------- '---------------------------------------------- ' '1. isblout.txt - output file of ISBL.EXE ' - comma separated variable text file ' - Field "Branch" ' - Field "Liq_flow" ' - Field "Air_flow" ' - Field "Lconc_in" ' - Field "Lconc_eff" ' - Field "Gconc_in" ' - Field "Gconc_eff" ' '---------------------------------------------- '-------------run naUTilus (ISBL)-------------- '---------------------------------------------- system.Execute("isbl.exe") '---------------------------------------------- '-------------open naUTilus output------------- '---------------------------------------------- TheProject = av.GetProject TabName = "isblout.txt".AsFileName TheTab = Vtab.Make(TabName,false,false) TheTable = Table.Make(TheTab) TheTable.SetName("isblout.txt")