You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in plant_power.f90
real(8) :: eff_tf_cryo
!! TF cryoplant efficiency (compared to pefect Carnot cycle).
!! Using -1 set the default value depending on magnet technology:
!!
!! - i_tf_sup = 1 : SC magnet, eff_tf_cryo = 0.13 (ITER design)
!! - i_tf_sup = 2 : Cryo-aluminium, eff_tf_cryo = 0.4
eff_tf_cryo needs to have the option of being an input as there is a wide range of cryogenic efficiencies. From 13% to 40% according to the strobridge curve and manufacturers literature.
Change this line in plant_power.f90 so it gives the input efficiency regardless of the type of magnet HTS or CRYO AL. This is misleading as it is always displayed regardless of the choice of magnet material/type.
call ovarre(outfile,'Efficiency (figure of merit) of cryogenic plant is 13% of ideal Carnot value:', &
'', (0.13D0*tmpcry)/(293.0D0 - tmpcry), 'OP ') with 0.13 replaced by eff_tf_cryo etc
The text was updated successfully, but these errors were encountered:
Why is this parameter described as "'TF coil cryo-plane efficiency'" in input.f90? All the coils need to be cryogenically cooled, not just the TF coils.
It would be much better to call it something like cryo_cop_ratio, to emphasise that it is not an efficiency, but a ratio of efficiencies (coefficients of performance).
In GitLab by @cjwgriesel on Oct 20, 2021, 14:40
in plant_power.f90
real(8) :: eff_tf_cryo
!! TF cryoplant efficiency (compared to pefect Carnot cycle).
!! Using -1 set the default value depending on magnet technology:
!!
!! - i_tf_sup = 1 : SC magnet, eff_tf_cryo = 0.13 (ITER design)
!! - i_tf_sup = 2 : Cryo-aluminium, eff_tf_cryo = 0.4
eff_tf_cryo needs to have the option of being an input as there is a wide range of cryogenic efficiencies. From 13% to 40% according to the strobridge curve and manufacturers literature.
Change this line in plant_power.f90 so it gives the input efficiency regardless of the type of magnet HTS or CRYO AL. This is misleading as it is always displayed regardless of the choice of magnet material/type.
call ovarre(outfile,'Efficiency (figure of merit) of cryogenic plant is 13% of ideal Carnot value:', &
'', (0.13D0*tmpcry)/(293.0D0 - tmpcry), 'OP ') with 0.13 replaced by eff_tf_cryo etc
The text was updated successfully, but these errors were encountered: