pY Petroleum Handling
Moderator: pyanodon
-
- Inserter
- Posts: 32
- Joined: Sun Jun 02, 2019 9:20 am
- Contact:
Re: pY Petroleum Handling
The oil burner takes in water and a burnable fluid to generate steam. The rate of fluid burned depends on the fluid's fuel value. A few examples from my current factory: Coal Gas is 400kJ, Refined Syngas is 500kJ, Gasoline is 1.0 MJ. I haven't worked out the exact math for it, though, as I just use it to convert excess burnables into power.
-
- Smart Inserter
- Posts: 1463
- Joined: Sun Jun 15, 2014 11:39 am
- Contact:
Re: pY Petroleum Handling
Steam. Its basicly the same as a normal boiler expect burns liquids.
Makes 3600 steam per minute
Re: pY Petroleum Handling
Oilburners can burn any flamable liquid with water to make default steam.
pY Coal processing mod
Discord: Pyanodon #5791
Discord: Pyanodon #5791
Re: pY Petroleum Handling
Thanks for the info! I tried looking it up, but my search-fu is less, I have been unable to find it.
-
- Long Handed Inserter
- Posts: 72
- Joined: Sat Aug 27, 2016 1:50 pm
- Contact:
Re: pY Petroleum Handling
Some more problematic Hot Air recipes (O: Original; H: Hot Air)
Too good:
Useless:
I'd recommend using a percentage increase to the output, instead of a fix +2. For example, if you want it to be +50%, you could do:
if the original output is 1 plate
- double all the inputs, double the time, add hot air, triple the output
else
- add hot air, add +50% to output rounded down
Too good:
Code: Select all
6 Lead Ore => O: 1 Lead Plate H: 3 Lead Plate : +200%
10 Nickel Ore => O: 1 Nickel Plate H: 3 Nickel Plate : +200%
1 Low Grade Copper => O: 1 Copper Plate H: 3 Copper Plate : +200%
3 Processed Iron Ore => O: 1 Iron Plate H: 3 Iron Plate : +200%
1 Grade 1 Nickel => O: 1 Nickel Plate H: 3 Nickel Plate : +200%
Code: Select all
100 High Grade Quartz Pulp => O: 180 Glass H: 182 Glass : +1.1%
1 High Grade Quartz => O: 65 Glass H: 67 Glas : +3%
28 Grade 4 Titanium => O: 147 Titanium Plate H: 149 Titanium Plate : +1.3%
if the original output is 1 plate
- double all the inputs, double the time, add hot air, triple the output
else
- add hot air, add +50% to output rounded down
Re: pY Petroleum Handling
Honestly I think hot air just generally turned out to be a bad idea. Especially now that it isn't even net-consuming stone brick, it just gives some extra yield at the end of a chain that already existed. So the possibilities are:
- You use hot air, either because it just seems good or because molten seems too hard at the moment. I would definitely go this way with glass until quartz 02, but it also applies to several other things discussed in this thread (without looking back over the thread, processed iron comes to mind).
- You use molten (or equivalent like with quartz). In most cases this is better than hot air in terms of ore for plates, but not necessarily by enough to be worth doing (and I think you want people to do it).
- You use solid and skip the hot air because it just seems meaningless. ShadowGlass gave some examples in the previous post.
- You use solid and skip the hot air because the actual demand of hot air is prohibitive. I haven't seen any recipes that look this way yet, but betting on players to think this way is a really bad idea. Brute forcing a simple solution to avoid the complex solution that you want them to do is definitely something players will do, unless the simple solution is really really bad. (This is why it is important that you nerfed vanilla smelting so hard.)
Last edited by Blokus on Mon Jul 15, 2019 2:10 am, edited 1 time in total.
-
- Long Handed Inserter
- Posts: 72
- Joined: Sat Aug 27, 2016 1:50 pm
- Contact:
Re: pY Petroleum Handling
Some tech level mismatch:
Drilling Fluid 2 is unlocked at Green Science, and it is used in Green Science pumpjack recipes.
It requires Ethylene Glycol, which requires Colloidal Silica.
Colloidal Silica is only unlocked in Nanotechnology, which is 2 science tiers higher. Silica Powder and Sodium Silicate are required for it, and also unlocked at Nanotechnology. All the other components of these 3 recipes should be available at Green Science tech level, so these 3 could be moved to Green Science to enable Drilling Fluid 2 to be produced (or alternatively replace Ethylene Glycol with something else in DF2).
Drilling Fluid 2 is unlocked at Green Science, and it is used in Green Science pumpjack recipes.
It requires Ethylene Glycol, which requires Colloidal Silica.
Colloidal Silica is only unlocked in Nanotechnology, which is 2 science tiers higher. Silica Powder and Sodium Silicate are required for it, and also unlocked at Nanotechnology. All the other components of these 3 recipes should be available at Green Science tech level, so these 3 could be moved to Green Science to enable Drilling Fluid 2 to be produced (or alternatively replace Ethylene Glycol with something else in DF2).
Re: pY Petroleum Handling
Did this most recent PH update accidentally remove the offshore pump recipe?
- otakushowboat
- Inserter
- Posts: 45
- Joined: Mon Mar 25, 2019 10:33 pm
- Contact:
Re: pY Petroleum Handling
Try running the following command to gain back the myriad recipes that seem to have been borked in the new update, it's worked for me:
Edit: I found this code posted by kingarthur in a response to someone else having issues with recipes after an update: viewtopic.php?f=219&t=72693&p=439499#p439499.
Code: Select all
/c for _,player in pairs(game.players) do
player.force.reset_recipes()
player.force.reset_technologies()
player.force.reset_technology_effects()
end
Last edited by otakushowboat on Tue Jul 16, 2019 8:17 pm, edited 2 times in total.
-
- Long Handed Inserter
- Posts: 72
- Joined: Sat Aug 27, 2016 1:50 pm
- Contact:
Re: pY Petroleum Handling
Would be more efficient to loop on game.forces instead of game.players, but it works either way. This should be in the migration script in pretty much every update. The current migration script doesn't just remove some basic recipes, but also any recipe which is unlocked by more than one tech, if you only have one of those techs researched.otakushowboat wrote: ↑Mon Jul 15, 2019 9:51 pm Try running the following command to gain back the myriad recipes that seem to have been borked in the new update, it's worked for me:
Code: Select all
/c for _,player in pairs(game.players) do player.force.reset_recipes() player.force.reset_technologies() player.force.reset_technology_effects() end
Re: pY Petroleum Handling
Ah, I was wondering why I could no longer make stone furnaces. Is this bug going to be fixed soon?otakushowboat wrote: ↑Mon Jul 15, 2019 9:51 pm Try running the following command to gain back the myriad recipes that seem to have been borked in the new update, it's worked for me:
Code: Select all
/c for _,player in pairs(game.players) do player.force.reset_recipes() player.force.reset_technologies() player.force.reset_technology_effects() end
Re: pY Petroleum Handling
Wow. Sulfur from oxygen. Rly?
Re: pY Petroleum Handling
yes, its magic for those didnt understand the concept
pY Coal processing mod
Discord: Pyanodon #5791
Discord: Pyanodon #5791
-
- Filter Inserter
- Posts: 771
- Joined: Sun Jun 03, 2018 8:54 am
- Contact:
Re: pY Petroleum Handling
yes BUT
Code: Select all
O2 u will probably get from water and u also et free H2
Code: Select all
power the setup by burning the H2
Code: Select all
dont forget that SWEET ash u get
Re: pY Petroleum Handling
Does this "concept" apply only to oxygen? And then I already saw recipes where almost one oxygen can be converted into syngas
or is it also a “concept” that cannot be understood?
Re: pY Petroleum Handling
pY Coal processing mod
Discord: Pyanodon #5791
Discord: Pyanodon #5791
-
- Smart Inserter
- Posts: 1463
- Joined: Sun Jun 15, 2014 11:39 am
- Contact:
Re: pY Petroleum Handling
Re: pY Petroleum Handling
That block doesn't straight up convert oxygen+water+air to syngas though; converting all the tar that you get by making syngas still leaves a significant coal gas shortfall, as Helmod is telling you. And that's even with two prod 3s in both steps.
Even if that shortfall weren't there, I feel like it might be cheaper on power to just run coal processing fed by fawogae rather than trying to run that, plus the huge amount of electrolysers and pressure pumps needed to back it up.