1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
// Module declarations
pub mod time_dependent;
pub mod time_independent;

// Internal dependencies + re-exports
pub use time_dependent::{DiffussionParamsTimeDependent, DiffussionSolverTimeDependent};
pub use time_independent::{DiffussionParamsTimeIndependent, DiffussionSolverTimeIndependent};


/// Struct to initialize builders params for either time-dependent or time-independent diffussion solvers.
pub struct DiffussionParams();

#[derive(Default)]
/// # General Information
/// 
/// Builder for diffussion params in 1D with time-dependance
/// 
/// # Fields
/// 
/// * `mu` - Movement term
/// * `b` - Velocity term
/// * `boundary_conditions` - Dirichlet conditions
/// * `initial_conditions` - Internal initial conditions
/// 
pub struct DiffussionParamsTimeDependentBuilder {
    mu: Option<f64>,
    b: Option<f64>,
    boundary_conditions: Option<[f64;2]>,
    initial_conditions: Option<Vec<f64>>,
}

#[derive(Default)]
/// # General Information
/// 
/// Builder for diffussion params in 1D
/// 
/// # Fields
/// 
/// * `mu` - Movement term
/// * `b` - Velocity term
/// * `boundary_conditions` - Dirichlet conditions
/// 
pub struct DiffussionParamsTimeIndependentBuilder {
    mu: Option<f64>,
    b: Option<f64>,
    boundary_conditions: Option<[f64;2]>,
}


impl DiffussionParams {
    pub fn time_dependent() -> DiffussionParamsTimeDependentBuilder {
        DiffussionParamsTimeDependentBuilder::default()
    }

    pub fn time_independent() -> DiffussionParamsTimeIndependentBuilder {
        DiffussionParamsTimeIndependentBuilder::default()
    }
}

impl DiffussionParamsTimeDependentBuilder {
    /// Set b
    pub fn b(self, b: f64) -> Self {
        Self {
            b: Some(b),
            ..self
        }
    }
    /// Set mu
    pub fn mu(self, mu: f64) -> Self {
        Self {
            mu: Some(mu),
            ..self
        }
    }
    /// Set boundary conditions
    pub fn boundary_conditions(self, left: f64, right: f64) -> Self {
        Self {
            boundary_conditions: Some([left, right]),
            ..self
        }
    }
    /// Set initial conditions - basic
    pub fn initial_conditions<A: IntoIterator<Item = f64>>(self, initial_conditions: A) -> Self {
        Self {
            initial_conditions: Some(initial_conditions.into_iter().collect()),
            ..self
        }
    }
    /// Use function 
    pub fn initial_conditions_from_function<A: Fn(f64) -> f64, B: AsRef<str>>(_func: A, _mesh: B) -> Self {

        

        todo!()
    }
    /// Build DiffussionParams
    pub fn build(self) -> DiffussionParamsTimeDependent {
        
        let mu = if let Some(mu) = self.mu {
            mu
        } else {
            panic!("Params lack 'mu' term!");
        };

        let b = if let Some(b) = self.b {
            b
        } else {
            panic!("Params lack 'b' term!");
        };

        let boundary_conditions = if let Some(boundary) = self.boundary_conditions {
            boundary
        } else {
            panic!("Params lack boundary conditions!");
        };

        let initial_conditions = if let Some(initial) = self.initial_conditions {
            initial
        } else {
            panic!("Params lack initial conditions!");
        };
        
        DiffussionParamsTimeDependent {
            mu,
            boundary_conditions,
            b,
            initial_conditions
        }
    }
}

impl DiffussionParamsTimeIndependentBuilder {
    /// Set mu
    pub fn mu(self, mu: f64) -> Self {
        Self {
            mu: Some(mu),
            ..self
        }
    }
    /// Set b
    pub fn b(self, b: f64) -> Self {
        Self {
            b: Some(b),
            ..self
        }
    }
    /// Set boundary cconditions
    pub fn boundary_conditions(self, left: f64, right: f64) -> Self {
        Self {
            boundary_conditions: Some([left, right]),
            ..self
        }
    }
    /// Build DiffussionParams
    pub fn build(self) -> DiffussionParamsTimeIndependent {
        
        let mu = if let Some(mu) = self.mu {
            mu
        } else {
            panic!("Params lack 'mu' term!");
        };

        let b = if let Some(b) = self.b {
            b
        } else {
            panic!("Params lack 'b' term!");
        };

        let boundary_conditions = if let Some(boundary) = self.boundary_conditions {
            boundary
        } else {
            panic!("Params lack boundary conditions!");
        };
        
        DiffussionParamsTimeIndependent {
            mu,
            boundary_conditions,
            b,
        }
    }
}