Advertisement
Guest User

test3

a guest
May 26th, 2016
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.56 KB | None | 0 0
  1. -- Reactor Search
  2. local reactor = peripheral.find("BigReactors-Reactor")
  3. if reactor then
  4.  print("Reaktor gefunden")
  5. end
  6.  
  7. -- Create Variables
  8. --local targetspeed = 1845
  9. --local targetspeed = 2860
  10. --local targetspeed = 5480
  11. local targetspeed = 6280
  12. --local targetspeed = 16280
  13. local speeddelay1 = 10
  14. local speeddelay2 = 100
  15. local active = 0
  16. local count = 0
  17. local monside = "right"
  18. local turbine = peripheral.find("BigReactors-Turbine")
  19.  
  20.  
  21.  
  22. mon = peripheral.wrap(monside)
  23. mon.clear()
  24. --term.redirect(mon)
  25.  
  26. --Setup Turbines
  27. if turbine then
  28.  print("Turbinen gefunden")
  29.  local periList = peripheral.getNames()
  30.  for i = 1, #periList do
  31.   if string.find(peripheral.getType(periList[i]), "Turbine") then
  32.    local aTurbine = peripheral.wrap(periList[i])
  33.    count = count +1
  34.    print(periList[i], ": ", aTurbine.getActive())
  35.    active = active +1
  36.    aTurbine.setActive(true)    aTurbine.setInductorEngaged(false)
  37.    sleep(0.1)
  38.    aTurbine.setInductorEngaged(true)
  39.    --aTurbine.setVentNone()
  40.    aTurbine.setVentOverflow()
  41.     aTurbine.setFluidFlowRateMax(2000)  
  42.   end
  43.  end
  44.  print(#periList, " Gerte")
  45.  print(active, " aktive Turbinen")
  46. end
  47. sleep(1)
  48.  
  49.  
  50.  
  51. -- Get Ready
  52. local turbines = active
  53. local steam = turbines *2000
  54. reactor.setActive(true)
  55. reactor.setAllControlRodLevels(50)
  56.  
  57.  
  58. -- Steuerung
  59. while true do
  60.  
  61.  -- Reactor control
  62.  if reactor.getHotFluidProducedLastTick() > steam - 100 then
  63.   level = reactor.getControlRodLevel(1)
  64.    reactor.setAllControlRodLevels(level +1)
  65.    print("+1")
  66.    local turnon = "+1"
  67. --     mon.setCursorPos(5,6)
  68. --     mon.write("+1")
  69.    local a = 5
  70.    local b = "false"
  71.    while a > 0 do
  72.     if reactor.getHotFluidProducedLastTick() < steam then
  73.      b = "true"
  74.      if b == "true" then
  75.       level = reactor.getControlRodLevel(1)
  76.       reactor.setAllControlRodLevels(level -1)
  77.       b = "false"
  78.      end
  79.     end
  80.     a = a -1
  81.    end
  82.  else
  83.   if reactor.getHotFluidProducedLastTick() < steam then
  84.    if reactor.getControlRodLevel(1) > 1 then
  85.     if reactor.getHotFluidProducedLastTick() < steam then
  86.      level = reactor.getControlRodLevel(1)
  87.      reactor.setAllControlRodLevels(level -1)
  88.      print("-1")
  89.      local turnon = "-1"
  90. --       mon.setCursorPos(5,6)
  91. --       mon.write("-1")
  92.      sleep(0.1)
  93.      periList = peripheral.getNames()
  94.     end
  95.    end
  96.   end
  97.  end
  98.  
  99.  
  100.  -- turbine control
  101.  local periList = peripheral.getNames()
  102.  for i = 1, #periList do
  103.   if string.find(periList[i], "Turbine") then
  104.    local aTurbine = peripheral.wrap(periList[i])
  105.    if aTurbine.getRotorSpeed() < (targetspeed - speeddelay1) then
  106.     aTurbine.setInductorEngaged(false)
  107.    end
  108.   end
  109.  end
  110.  sleep(0)
  111.  local periList = peripheral.getNames()
  112.  for i = 1, #periList do
  113.   if string.find(periList[i], "Turbine") then
  114.    local aTurbine = peripheral.wrap(periList[i])
  115.    if aTurbine.getRotorSpeed() < targetspeed and aTurbine.getActive() == false then
  116.     aTurbine.setActive(true)
  117.     steam = steam +2000
  118.    else
  119.     if aTurbine.getRotorSpeed() > targetspeed and aTurbine.getActive() == true then
  120.      aTurbine.setActive(false)
  121.      steam = steam -2000
  122.     end
  123.    end
  124.    if aTurbine.getEnergyStored() < 100 then
  125.     if aTurbine.getRotorSpeed() > (targetspeed - speeddelay2) then
  126.      aTurbine.setInductorEngaged(true)
  127.     end
  128.    end
  129.    if aTurbine.getEnergyStored() > 100 and aTurbine.getFluidFlowRateMax() >= 2000 then
  130.     aTurbine.setFluidFlowRateMax(50)
  131.     steam = steam -1950
  132.    end
  133.      if aTurbine.getEnergyStored() < 100 and aTurbine.getFluidFlowRateMax() <= 50 then
  134.        aTurbine.setFluidFlowRateMax(2000)
  135.        steam = steam +1950
  136.       end
  137.   end
  138.  end
  139.  
  140.  sleep(0,01)
  141.  
  142.  
  143.  -- print
  144.  shell.run("clear")
  145.  print("ControlRodLevel: ", reactor.getControlRodLevel(1))
  146.    mon.setCursorPos(1,1)
  147.    mon.write("Control Rod Level: ")
  148.    mon.setCursorPos(20,1)
  149.    mon.write(reactor.getControlRodLevel(1))
  150.  print("       SteamOut: ", reactor.getHotFluidProducedLastTick(), "/", steam)
  151.    mon.setCursorPos(7,2)
  152.    mon.write("Steam Out:        /")
  153.    mon.setCursorPos(18,2)
  154.    mon.write(reactor.getHotFluidProducedLastTick())
  155.    mon.setCursorPos(26,2)
  156.    mon.write(steam)
  157.  print("       Turbinen: ", active, "/", count)
  158.    mon.setCursorPos(7,3)
  159.    mon.write("Turbines:     /")
  160.    mon.setCursorPos(17,3)
  161.    mon.write(active)
  162.    mon.setCursorPos(22,3)
  163.    mon.write(count)
  164.  print("       Target Speed:  ", targetspeed)
  165.    mon.setCursorPos(7,4)
  166.    mon.write("Target Speed: ")
  167.    mon.setCursorPos(21,4)
  168.    mon.write(targetspeed)
  169.  --write turn on  
  170.    mon.setCursorPos(5,6)
  171.    mon.write(turnon)
  172.    
  173. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement