|
5 | 5 | \usepackage{amsmath} |
6 | 6 | \usepackage{graphicx} |
7 | 7 | \usepackage{bm} |
| 8 | +\usepackage{color} |
8 | 9 | %\usepackage{cite} |
9 | 10 |
|
10 | 11 | \newcommand{\gcc}{\mathrm{g~cm^{-3} }} |
|
21 | 22 |
|
22 | 23 | The terms on the left (Hyperbolic subsystem) are solved with the hydro solver, while the terms on the right (parabolic system) are solved with the implicit solver. \\ |
23 | 24 |
|
24 | | -The inputs file specifies the incoming radiation flux to the boundary, which is used to fill the ghost cells for the implicit solver. The hydro solver does not know about this, so the ghost cells for the radiation energy are just filled in the way the hydro BC where specified. \\ |
| 25 | +The inputs file specifies the incoming radiation flux $F_{in}$ to the boundary (radiation.hi\_bcval), which is used to fill the ghost cells for the implicit solver. The hydro solver does not know about this, so the ghost cells for the radiation energy are just filled in the way the hydro BC were specified. \\ |
25 | 26 |
|
26 | 27 | In order to fill the hydro BC for radiation energy, taking into account the radiation flux comming from the boundary, we can use Eq. (2.19) from the SANDIA report \cite{advinrad} : |
27 | 28 |
|
|
47 | 48 | Then at the boundary, for let's say coordinate x this leads to |
48 | 49 |
|
49 | 50 | \begin{align*} |
50 | | - \frac{E_{r,ghost} - E_{r}}{\Delta x} = \frac{-1}{cD} \left[ -2 F_{in} + \frac{c}{2} E_{r,ghost}\right] |
| 51 | + \frac{E_{r,ghost} - E_{r}}{\Delta x} = \frac{-1}{cD} \left[ -2 F_{in} + \frac{c}{2} E_{r,ghost?}\right] |
51 | 52 | \qquad , |
52 | 53 | \qquad |
53 | 54 | D = \frac{\lambda}{\chi_R} |
54 | 55 | \end{align*} |
| 56 | +\textcolor{blue}{ Question: What value of $E_r$ should we be using on the right side of the equation?}\\ |
55 | 57 |
|
56 | 58 | Note that $D$ is different by a factor of $c$ from Castro paper equation (8) because of the difference in Flux definition from the SANDIA report. (Equations (2.1.5) and (7) respectively) \\ |
57 | 59 |
|
| 60 | +% E_{r,ghost} = \frac{2D}{2D+ \Delta x} \left[ \frac{2 \Delta x}{cD} F_{in} + E_r\right] |
58 | 61 | \begin{align*} |
59 | | - E_{r,ghost} = \frac{2}{2+ c\Delta x} \left[ \frac{2 \Delta x}{cD} F_{in} + E_r\right] |
| 62 | + E_{r,ghost} = E_r - \frac{\Delta x}{c D} \left[ -2 F_{in} + \frac{c}{2} E_{r,ghost?}\right] |
60 | 63 | \end{align*} |
61 | 64 |
|
| 65 | + This will be implemented in a bc\_fill\_nd.F90 file in the problem setup with a ca\_radfill() routine\\ |
| 66 | + |
| 67 | + \textcolor{blue}{Question: What should we use for D? We were thinking on having D as a constant from the initialization parameters} |
62 | 68 |
|
63 | 69 | \bibliography{references}{} |
64 | 70 | \bibliographystyle{plain} |
|
0 commit comments