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
11
12
13
14
15
16
//! > **Geometric Optics with Aperture Diffraction**
//!

use goad::{
    multiproblem::MultiProblem,
    settings::{self},
};

fn main() {
    let settings = settings::load_config().unwrap();
    let mut multiproblem =
        MultiProblem::new(None, Some(settings)).expect("Failed to create MultiProblem");

    multiproblem.solve();
    let _ = multiproblem.writeup();
}