Page 1 of 1
reddit bug report/help request about LTN fluids
Posted: Mon Jul 24, 2017 4:37 am
by Patashu
https://www.reddit.com/r/factorio/comme ... d/dkmrh6p/
My normal trains are working fine with LTN, but I'm having a hell of a time with fluid wagons. For some reason my trains with acid in them are leaving before unloading the acid, then they go back to depot and get an oil order while still having acid. Next thing I know it unloads acid at my oil drop off eventually and causes a bottleneck there where no oil can be delivered until I clear the pipes of the acid.
It's driving me batty trying to figure out how to get them to clear their inventories in case something gets hosed up. I set up some pump stations to flare stack burners at the depot to offload the liquids, but over time that ends up getting mixed with oil and acid fluid, so it won't send it to the burners since you can't mix fluids. So the pipes back up while I'm doing other stuff and the next train that comes in with fluid can't dump it all, so it just moves on to its next orders which clogg up oil unload or acid unload again. So far that's been the most frustrating thing with LTN for me and I'm about to stop using it all together as a result.
Re: reddit bug report/help request about LTN fluids
Posted: Mon Jul 24, 2017 5:15 am
by Optera
Patashu wrote:https://www.reddit.com/r/factorio/comme ... d/dkmrh6p/
My normal trains are working fine with LTN, but I'm having a hell of a time with fluid wagons. For some reason my trains with acid in them are leaving before unloading the acid, then they go back to depot and get an oil order while still having acid. Next thing I know it unloads acid at my oil drop off eventually and causes a bottleneck there where no oil can be delivered until I clear the pipes of the acid.
It's driving me batty trying to figure out how to get them to clear their inventories in case something gets hosed up. I set up some pump stations to flare stack burners at the depot to offload the liquids, but over time that ends up getting mixed with oil and acid fluid, so it won't send it to the burners since you can't mix fluids. So the pipes back up while I'm doing other stuff and the next train that comes in with fluid can't dump it all, so it just moves on to its next orders which clogg up oil unload or acid unload again. So far that's been the most frustrating thing with LTN for me and I'm about to stop using it all together as a result.
See
Known Issues:
You can help solve this bug by posting in the thread i started about this issue to make the devs realize being unable to discern beteen 0 and 0.01 on the circuit network renders the whole circuit network unusable for controlling fluids.
If you already have different fluids stuck in plumbing
this design by Dave might help. Never had to use it myself.
Re: reddit bug report/help request about LTN fluids
Posted: Mon Jul 24, 2017 6:26 am
by Patashu
Thx, I forwarded your response to them
Re: reddit bug report/help request about LTN fluids
Posted: Fri Aug 11, 2017 7:22 pm
by steinio
Patashu wrote:https://www.reddit.com/r/factorio/comme ... d/dkmrh6p/
My normal trains are working fine with LTN, but I'm having a hell of a time with fluid wagons. For some reason my trains with acid in them are leaving before unloading the acid, then they go back to depot and get an oil order while still having acid. Next thing I know it unloads acid at my oil drop off eventually and causes a bottleneck there where no oil can be delivered until I clear the pipes of the acid.
It's driving me batty trying to figure out how to get them to clear their inventories in case something gets hosed up. I set up some pump stations to flare stack burners at the depot to offload the liquids, but over time that ends up getting mixed with oil and acid fluid, so it won't send it to the burners since you can't mix fluids. So the pipes back up while I'm doing other stuff and the next train that comes in with fluid can't dump it all, so it just moves on to its next orders which clogg up oil unload or acid unload again. So far that's been the most frustrating thing with LTN for me and I'm about to stop using it all together as a result.
Set your pumps to item >= 0 instead of >0 and activate finish loading.
Re: reddit bug report/help request about LTN fluids
Posted: Fri Aug 11, 2017 7:30 pm
by Optera
steinio wrote:Patashu wrote:https://www.reddit.com/r/factorio/comme ... d/dkmrh6p/
My normal trains are working fine with LTN, but I'm having a hell of a time with fluid wagons. For some reason my trains with acid in them are leaving before unloading the acid, then they go back to depot and get an oil order while still having acid. Next thing I know it unloads acid at my oil drop off eventually and causes a bottleneck there where no oil can be delivered until I clear the pipes of the acid.
It's driving me batty trying to figure out how to get them to clear their inventories in case something gets hosed up. I set up some pump stations to flare stack burners at the depot to offload the liquids, but over time that ends up getting mixed with oil and acid fluid, so it won't send it to the burners since you can't mix fluids. So the pipes back up while I'm doing other stuff and the next train that comes in with fluid can't dump it all, so it just moves on to its next orders which clogg up oil unload or acid unload again. So far that's been the most frustrating thing with LTN for me and I'm about to stop using it all together as a result.
Set your pumps to item >= 0 instead of >0 and activate finish loading.
Setting pumps to >= 0 simply means always on, you could just as well let them run without circuit connection.
You can't fix a bug that stems from rounding float to int by changing a condition after rounding. Circuit network will report 0.4 as 0 due to mathematical rounding instead of logical rounding that'd allow us to discern truly empty from trace amounts blocking a tank/wagon.
Re: reddit bug report/help request about LTN fluids
Posted: Fri Aug 11, 2017 7:31 pm
by steinio
Optera wrote:steinio wrote:Patashu wrote:https://www.reddit.com/r/factorio/comme ... d/dkmrh6p/
My normal trains are working fine with LTN, but I'm having a hell of a time with fluid wagons. For some reason my trains with acid in them are leaving before unloading the acid, then they go back to depot and get an oil order while still having acid. Next thing I know it unloads acid at my oil drop off eventually and causes a bottleneck there where no oil can be delivered until I clear the pipes of the acid.
It's driving me batty trying to figure out how to get them to clear their inventories in case something gets hosed up. I set up some pump stations to flare stack burners at the depot to offload the liquids, but over time that ends up getting mixed with oil and acid fluid, so it won't send it to the burners since you can't mix fluids. So the pipes back up while I'm doing other stuff and the next train that comes in with fluid can't dump it all, so it just moves on to its next orders which clogg up oil unload or acid unload again. So far that's been the most frustrating thing with LTN for me and I'm about to stop using it all together as a result.
Set your pumps to item >= 0 instead of >0 and activate finish loading.
Setting pumps to >= 0 simply means always on, you could just as well let them run without circuit connection.
You can't fix a bug that stems from rounding float to int by changing a condition after rounding. Circuit network will report 0.4 as 0 due to mathematical rounding instead of logical rounding that'd allow us to discern truly empty from trace amounts blocking a tank/wagon.
Hell yes i'm standing at your side in this battle but we need to play on until some decision is made.