| .. | ||
| figures | ||
| scipyODE_implementation | ||
| parameters.py | ||
| README.md | ||
| simulation_study.ipynb | ||
Model
Non-linear dynamic model of the MSRE based on Singh et al.. The model uses a "nodalized" approach, in which the reactor system is composed of coupled subsystems, each of which contain multiple nodes to represent the various dynamics contributing to neutron density (reactor power) and heat transfer. This model is a replication of the one-region nodal model implemented in Singh et al. A schematic of the nodes is shown below
Kinetics
The neutron kinetics are expressed in terms of fractional power. As described in Singh et al., "The premise is that reactor power is proportional to neutron density, with all other parameters held fixed." In the model herien, kinetics are described by the following set of equations
\begin{equation}
\frac{{dn(t)}}{{dt}} = \frac{{(\rho(t) - \beta)}}{\Lambda} n(t) + \sum_{{i=1}}^6 \lambda_i C_i(t) + S(t)
\end{equation}
where S(t) is an external source term, and C_i(t) is the concentration of the i^{th} precursor group (six total for this model) with
\frac{dC_i(t)}{dt} = \frac{\beta_i}{\Lambda}n(t)-\lambda_i C_i(t) - \frac{C_i(t)}{\tau_C} + \frac{C_i(t - \tau_L) e^{-\lambda_i \tau_L}}{\tau_C}
where \rho(t) is the total reactivity such that
\rho(t)=\rho_0+\rho_{fb}(t)+\rho_{ext}
where \rho_0 is the reactivity necessary for steady state operation, found by solving the above two equations in the steady state, which yields
\rho_0 = \beta - \sum_{i=1}^6 \frac{\beta_i}{1+\frac{1}{\lambda_i \tau_C}(1-e^{-\lambda_i \tau_L})}
and \rho_{ext} is external reactivity, e.g. from a reactivity insertion, and \rho_{fb} is the feedback reactivity due to temperature differences in the core nodes, expressed as
\rho_{fb}(t) = \alpha_f \sum_{i=1}^{n} I_{fi} (T_{f_i,0} - T_{f_i}(t)) + \alpha_g \sum_{i=1}^{n} I_{gi} (T_{g,0} - T_{g_i}(t)), \quad \text{where} \sum_{\text{regions}} I_{fi} = \sum_{\text{regions}} I_{gi} = 1.0
where \alpha_f and \alpha_g are the fuel and graphite temperature-reactivity coefficients respectively, and I represents the weighted nuclear importance factor of each region.
The kinetics are coupled to the heat exchanger node via the feedback reactivity, \rho_{fb}(t), which depends on the temperature of the fuel and graphite nodes, which ultimately depend on the fuel inlet temperature. Note, the differential equation govenring neutron density, \frac{dn(t)}{dt}, is nonlinear due to the fact that n(t) is multiplied with \rho(t).
Heat Transfer
The equations governing heat transfer contain three terms; a source term and a sink term, occuring from either mass transfer (1D flow) or conduction via wetted interface, as well as a fractional power generation term, which is zero at all nodes outside of the core. The equations governing the two core fuel nodes are, for example
\frac{dT_{f1}}{dt} = \frac{W_f}{m_{f1}}(T_{f_{in}}-T_{f1}) + \frac{K_1 P_0 (\frac{n}{n_0})}{m_{f1} C_{pf}} + \left( \frac{K_{g1}}{K_{g1}+K_{g2}} \right) \frac{hA_{fg}}{m_{f1}C_{pf}}(T_g - T_{f1})
\frac{dT_{f2}}{dt} = \frac{W_f}{m_{f2}}(T_{f1}-T_{f2}) + \frac{K_2 P_0 (\frac{n}{n_0})}{m_{f2} C_{pf}} + \left( \frac{K_{g2}}{K_{g1}+K_{g2}} \right) \frac{hA_{fg}}{m_{f2}C_{pf}}(T_g - T_{f1})
"Here, W_f is the mass flow rate of fuel salt, m_{f1} and m_{f2} represent the mass of fuel nodes 1 and 2 respectively, C_{pf} represents the fuel salt specific heat capacity, K_1 and K_2 are the fraction of total power generated in fuel nodes 1 and 2, K_{g1} and K_{g2} represent the fraction of power generated in the graphite transferred to each fuel node, hA_{fg} is the product of area and heat transfer coefficient for the fuel-graphite interface, P_0 is the nominal power which multiplied with fractional neutron density n/no gives the instantaneous power, and the $T$s represent the temperatures of the various nodes. Note that the direction of heat transfer depends on the instantaneous temperature of the various nodes." (Singh et. al).
Method
The model herein uses JiTCDDE, a numerical solver for delay-differential equations. Sample implementation is shown below:
# instantiate jitcdde object
DDE = jitcdde([T_out_rc,T_out_air,T_hf1,T_hf2,T_hf3,T_hf4,T_ht1,T_ht2,T_hc1,
T_hc2,T_hc3,T_hc4,n,C1,C2,C3,C4,C5,C6,T_cg,T_cf1,T_cf2,rho])
# set initial conditions
DDE.constant_past([T0_rp, T0_rs, T0_p1,T0_p2, T0_p3, T0_p4, T0_t1, T0_t2, T0_s1, T0_s2,
T0_s3, T0_s4, n_frac0, C0[0], C0[1], C0[2], C0[3], C0[4], C0[5],
T0_g1, T0_f1, T0_f2,rho_initial])
# jitcdde solver parameters
t0 = 0.0
tf = 1000.00
T = np.arange(t0,tf,0.01)
sol_jit = []
for t_x in T:
sol_jit.append(DDE.integrate(t_x))
The scipyODE_implementation contains a manual implementation using the dopri5 method of SciPy's ODE library. However, since SciPy's ODE library does not support delay differential equations, the delay terms are stored and handled manually. Since the 'dopri5' method uses adaptive time-stepping, linear interpolation is used for approximating the value of the delay terms near the closest timestep to the delay.
