model steelT.mod; table T "ODBC" "steel.mdb": [], T IN; table Products IN "ODBC" "steel.mdb": [PROD] IN, rate, inv0, prodcost, invcost; table Periods IN "ODBC" "steel.mdb": [TIME], avail; table Plans "ODBC" "steel.mdb": [PROD, TIME], market IN, revenue IN, Make OUT, Sell OUT, Inv OUT; read table T; read table Products; read table Periods; read table Plans; display rate, inv0, prodcost, invcost; display avail; display market, revenue; solve; write table Plans;