Implementing Snow surface roughness on SMRT #85
Replies: 2 comments 1 reply
|
Hi peilinUW,
Roughness is pretty tricky, and yes, you will be sensitive to it since you are working at nadir. Hope this helps |
|
Hi, Is there a minus sign missing in all your dB values ? could you please edit the message for the future readers. Both GO normal and GO backscatter can be used with DORT but have advantages and disavantages. The normal GO implements the full GO, the reflectivity is bistatic. The transmittivity is also bistatic but it can be very peaked in the refraction direction. Because of this peaked nature, the RT solvers are struggling, certainly underestimating (probably a lot) the transmitted power. Even if well integrated over the peak, GO formulation does not conserve energy anyway. This is why I implemented the GO_backscatter, which only consider the backscatter and does not compute the transmittance with GO. With moderate roughness, this approach should be fine. It is also significantly faster. A more careful investigation is needed on this topic but the few tests I've done today (passive microwave) show that the normal geometrical_optics behave correctly. This is far from sufficient. BTW, I've submitted a few changes, one is to check the validity of the geometrical optics. Nothing major. |

Hi peilinUW,
I think the rms value you are using is too high. The paper you are referencing was for soil, which is rougher. In my experience, rough snow surface is more in the mm range (Landy et al. 2019, DOI: 10.1109/TGRS.2018.2889763, Meloche et al. 2024, DOI:10.5194/egusphere-2024-1583). This will probably reduce the backscatter if you use iem... Lets say you use 5mm, it would put right on the edge ks < 3.
Try
surface = make_interface('iem_fung92_brogioni10', roughness_rms = 0.005, corr_length = 0.01)The
geometrical_optics_backscattershould not be use with DORT because its not a first-order scattering model. It was made to use withnadir_lrm_altimetrymodule... so better to stick…