goad 1.1.9

Compute the single scattering properties of particles much larger than the wavelength of light with geometric optics and aperture diffraction theory.
Documentation
1
2
3
4
5
6
7
8
9
10
// --8<-- [start:multiproblem]
fn main() {
    use goad::multiproblem::MultiProblem;
    use goad::settings;

    // Setup and run a multi-orientation problem with default settings
    let mut multiproblem = MultiProblem::new(None, settings::load_config().ok()).unwrap();
    multiproblem.solve();
}
// --8<-- [end:multiproblem]