Reduce energy input needed to ignite fusion by factor of 10
This commit is contained in:
parent
a478ad0c4f
commit
743d80b516
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ public class FusionReactor implements IFusionReactor
|
|||
@Override
|
||||
public void addTemperatureFromEnergyInput(double energyAdded)
|
||||
{
|
||||
plasmaTemperature += energyAdded / plasmaHeatCapacity;
|
||||
plasmaTemperature += energyAdded / plasmaHeatCapacity * (isBurning() ? 1 : 10);
|
||||
}
|
||||
|
||||
public boolean hasHohlraum()
|
||||
|
|
Loading…
Reference in a new issue