Fired Heater Duty Screening
Use this skill for public, educational fired-heater screening. It estimates the process duty, the fired duty, the fuel-gas rate, and the average radiant-section heat flux using open energy-balance relations so an agent can scope a fired-heater study and check the radiant flux against a public guideline before detailed thermal design.
When to Use
- When a user asks roughly what fired duty and fuel rate a heater needs.
- When an agent needs a quick radiant-flux check to scope a fired-heater study.
- When examples must run without confidential heater designs, vendor data, or company specs.
Inputs
mass_flow: process mass flow in kg/s.
specific_heat: process-fluid specific heat in kJ/(kg K).
inlet_temperature: process inlet temperature in kelvin.
outlet_temperature: process outlet temperature in kelvin.
thermal_efficiency: heater thermal efficiency, default 0.85.
fuel_heating_value: fuel lower heating value in MJ/kg, default 46.0.
radiant_area: radiant-section tube surface area in m2.
allowable_radiant_flux: allowable average radiant flux in kW/m2, default 37.0.
Outputs
process_duty_kw: process absorbed duty Q.
fired_duty_kw: fired duty from the efficiency.
fuel_rate_kg_s: fuel-gas mass rate.
average_radiant_flux_kw_m2: process duty divided by radiant area.
flux_ratio: ratio of average radiant flux to the allowable flux.
fired_heater_warning: ok, watch, or high-flux.
assumptions: public assumptions used by the placeholder model.
Engineering Method
The Python class FiredHeaterDutyModel uses open energy-balance relations only:
- the process duty uses
Q = mass_flow * specific_heat * (T_out - T_in).
- the fired duty uses
Q_fired = Q / thermal_efficiency.
- the fuel rate uses
fuel = Q_fired / fuel_heating_value.
- the average radiant flux uses
Q / radiant_area and is compared to a public guideline.
This is educational and screening-only logic. It uses a constant specific heat, treats all process duty as absorbed in the radiant section for the flux estimate, and does not model convection-section split, tube-wall temperature, flame and bridgewall temperature, draft, or emissions. Typical public average radiant fluxes are about 30 to 37 kW/m2. It is not a replacement for validated fired-heater design (for example API 560) and a qualified review.
Python Usage Pattern
from fired_heater_duty_screening import FiredHeaterDutyModel
model = FiredHeaterDutyModel()
result = model.evaluate(
mass_flow=15.0,
specific_heat=2.4,
inlet_temperature=473.15,
outlet_temperature=623.15,
radiant_area=200.0,
)
print(result.fired_heater_warning)
print(result.fired_duty_kw)
print(result.average_radiant_flux_kw_m2)
Related NeqSim Functionality
For validated fired-heater calculations, redirect to existing NeqSim classes:
neqsim.process.equipment.heatexchanger.FiredHeater — fired-heater equipment model with duty and efficiency.
neqsim.process.equipment.heatexchanger.Heater — generic process heater with duty calculation.
neqsim.process.equipment.powergeneration.HRSG — heat-recovery steam generator for waste-heat duty.
This skill is a public energy-balance triage layer that decides when to invoke those validated heater classes.
Validation Checklist
Common Mistakes
| Symptom |
Cause |
Fix |
| Duty too low |
Specific heat at wrong temperature |
Use an average specific heat over the duty range |
| Flux always high |
All duty assigned to radiant section |
Split convection and radiant duty in detailed design |
| Fuel rate wrong |
Higher heating value used with efficiency on lower basis |
Keep the heating value and efficiency on the same basis |
Limitations
- No proprietary heater designs, vendor data, or company specs are included.
- No convection-section split, tube-wall, draft, or emissions modeling is performed.
- A constant specific heat is assumed over the full duty range.
References
1---2name: neqsim-fired-heater-duty-screening3description: Educational fired-heater duty and radiant-flux screening using public energy-balance relations (API 560 style). USE WHEN: a task needs a public, screening-level estimate of process duty, fired duty, fuel rate, and average radiant flux for a fired heater before detailed thermal design.4---56# Fired Heater Duty Screening78Use this skill for public, educational fired-heater screening. It estimates the process duty, the fired duty, the fuel-gas rate, and the average radiant-section heat flux using open energy-balance relations so an agent can scope a fired-heater study and check the radiant flux against a public guideline before detailed thermal design.910## When to Use1112- When a user asks roughly what fired duty and fuel rate a heater needs.13- When an agent needs a quick radiant-flux check to scope a fired-heater study.14- When examples must run without confidential heater designs, vendor data, or company specs.1516## Inputs1718- `mass_flow`: process mass flow in kg/s.19- `specific_heat`: process-fluid specific heat in kJ/(kg K).20- `inlet_temperature`: process inlet temperature in kelvin.21- `outlet_temperature`: process outlet temperature in kelvin.22- `thermal_efficiency`: heater thermal efficiency, default 0.85.23- `fuel_heating_value`: fuel lower heating value in MJ/kg, default 46.0.24- `radiant_area`: radiant-section tube surface area in m2.25- `allowable_radiant_flux`: allowable average radiant flux in kW/m2, default 37.0.2627## Outputs2829- `process_duty_kw`: process absorbed duty `Q`.30- `fired_duty_kw`: fired duty from the efficiency.31- `fuel_rate_kg_s`: fuel-gas mass rate.32- `average_radiant_flux_kw_m2`: process duty divided by radiant area.33- `flux_ratio`: ratio of average radiant flux to the allowable flux.34- `fired_heater_warning`: `ok`, `watch`, or `high-flux`.35- `assumptions`: public assumptions used by the placeholder model.3637## Engineering Method3839The Python class `FiredHeaterDutyModel` uses open energy-balance relations only:4041- the process duty uses `Q = mass_flow * specific_heat * (T_out - T_in)`.42- the fired duty uses `Q_fired = Q / thermal_efficiency`.43- the fuel rate uses `fuel = Q_fired / fuel_heating_value`.44- the average radiant flux uses `Q / radiant_area` and is compared to a public guideline.4546This is educational and screening-only logic. It uses a constant specific heat, treats all process duty as absorbed in the radiant section for the flux estimate, and does not model convection-section split, tube-wall temperature, flame and bridgewall temperature, draft, or emissions. Typical public average radiant fluxes are about 30 to 37 kW/m2. It is not a replacement for validated fired-heater design (for example API 560) and a qualified review.4748## Python Usage Pattern4950```python51from fired_heater_duty_screening import FiredHeaterDutyModel5253model = FiredHeaterDutyModel()54result = model.evaluate(55 mass_flow=15.0,56 specific_heat=2.4,57 inlet_temperature=473.15,58 outlet_temperature=623.15,59 radiant_area=200.0,60)6162print(result.fired_heater_warning)63print(result.fired_duty_kw)64print(result.average_radiant_flux_kw_m2)65```6667## Related NeqSim Functionality6869For validated fired-heater calculations, redirect to existing NeqSim classes:7071- `neqsim.process.equipment.heatexchanger.FiredHeater` — fired-heater equipment model with duty and efficiency.72- `neqsim.process.equipment.heatexchanger.Heater` — generic process heater with duty calculation.73- `neqsim.process.equipment.powergeneration.HRSG` — heat-recovery steam generator for waste-heat duty.7475This skill is a public energy-balance triage layer that decides when to invoke those validated heater classes.7677## Validation Checklist7879- [ ] Mass flow, specific heat, and temperatures are positive and `T_out > T_in`.80- [ ] Radiant area and efficiency are positive and in range.81- [ ] Tests cover a duty calculation, a high-flux case, and invalid input.82- [ ] Results are described as educational screening indicators.83- [ ] Real design is redirected to validated methods, API 560, NeqSim, and qualified review.8485## Common Mistakes8687| Symptom | Cause | Fix |88| --- | --- | --- |89| Duty too low | Specific heat at wrong temperature | Use an average specific heat over the duty range |90| Flux always high | All duty assigned to radiant section | Split convection and radiant duty in detailed design |91| Fuel rate wrong | Higher heating value used with efficiency on lower basis | Keep the heating value and efficiency on the same basis |9293## Limitations9495- No proprietary heater designs, vendor data, or company specs are included.96- No convection-section split, tube-wall, draft, or emissions modeling is performed.97- A constant specific heat is assumed over the full duty range.9899## References100101- NeqSim repository: https://github.com/equinor/neqsim102- NeqSim Skills Guide: https://github.com/equinor/neqsim/blob/master/docs/integration/skills_guide.md