-
Notifications
You must be signed in to change notification settings - Fork 626
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ground_vegetation_radi results #13440
Comments
This is very good test case. I agree with the analytical solution. This is basically the same as radiation_plane_layer tests in radiation folder. I did, however, make some mods to the input file to
The only way (that I can think of) to improve the RTE solution in cases with very few cells (like two in this case), is to abandon the first-order upwind. Instead, I can try to implement first-order exponential approximation of cell-face intensities (exp(-kx) \approx 1-kx, now exp(-kx) \approx 1 there). It is easier to test this with KAPPA0 than with particles. So, I will start this by adding the pure absorption versions of the plane_layer test cases, and extending them towards the very poor spatial resolution. |
Also, something that came up in this case when I was looking at devices to measure directional intensity is this bit of code was picking up the wrong radiation angle when I was trying to measure at Lines 3410 to 3426 in 85b5026
I think it should be something more like:
What do you think? |
I'll take a look at the orientation/angle thing. |
FDS Source: Issue #13440. Remove unneeded loop
I removed an unused loop that was a leftover from the past when we used to have multiple orientations allowed for a solid particle. This loop was doing nothing and does not address your issue. I just wanted to get it out of the way. |
|
Its just the unit vector in the direction of the radiation angle and |
FDS Source: Issue #13440. Clarify some radiation arrays
I cleaned up some of the variable names related to radiation and oriented particles. Should not change functionality. |
I've been revisiting the
ground_vegetation_radi
verification case to try to understand inaccuracies we might have with radiation attenuation by particles/vegetation. We give the expected solution for attenuation of radiation from vegetation between a hot ceiling to cold floor as:where kappa is the absorption coefficient (15.46 1/m) and delta is the thickness of the vegetation layer (5cm)
The first thing worth noting is that the guide/expected solution assumes a hot wall temperature of 993 K, but the actual case is run at 923 K, so both the boundary fuel and the particle method are even further off than the figure suggests (the expected value would be ~8.7 kW/m2).
The second thing worth noting is that we state in the guide that the particle prediction is off because we only use a single layer of particles (we actually use two). I wanted to assess the idea that the prediction should be improved with increasing resolution. I ran the particle case with a series of resolutions between 5 cm and 0.3125 cm. I also increased the hot wall temperature to 1273 K. The typical assumption is that we should do okay with ~10 or more grid cells over the attenuation length scale ...which is ~6.5 cm here.
As we can see, even at high resolutions we are pretty far off. So I have two questions:
The
vegetation_absorb
case tests a similar concept and we appear to do okay but these have lower attenuation coefficients.The text was updated successfully, but these errors were encountered: