layer_area_per_molecule
MATERIAL_SOLVATED_DEFAULTS = {'solvent_fraction': {'description': 'Fraction of solvent in layer.', 'value': 0.2, 'unit': 'dimensionless', 'min': 0, 'max': 1, 'fixed': True}}
module-attribute
LAYER_DEFAULTS = {'thickness': {'description': 'The thickness of the layer in angstroms', 'url': 'https://github.com/reflectivity/edu_outreach/blob/master/refl_maths/paper.tex', 'value': 10.0, 'unit': 'angstrom', 'min': 0.0, 'max': np.inf, 'fixed': True}, 'roughness': {'description': 'The interfacial roughness, Nevot-Croce, for the layer in angstroms.', 'url': 'https://doi.org/10.1051/rphysap:01980001503076100', 'value': 3.3, 'unit': 'angstrom', 'min': 0.0, 'max': np.inf, 'fixed': True}}
module-attribute
DEFAULTS = {'molecular_formula': 'C10H18NO8P', 'area_per_molecule': {'description': 'Surface coverage', 'value': 48.2, 'unit': 'angstrom^2', 'min': 0, 'max': np.inf, 'fixed': True}, 'sl': {'description': 'The real scattering length for a molecule formula in angstrom.', 'url': 'https://www.ncnr.nist.gov/resources/activation/', 'value': 4.186, 'unit': 'angstrom', 'min': -np.inf, 'max': np.inf, 'fixed': True}, 'isl': {'description': 'The real scattering length for a molecule formula in angstrom.', 'url': 'https://www.ncnr.nist.gov/resources/activation/', 'value': 0.0, 'unit': 'angstrom', 'min': -np.inf, 'max': np.inf, 'fixed': True}}
module-attribute
Material
Bases: BaseCore
Source code in src/easyreflectometry/sample/elements/materials/material.py
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 | |
__init__(sld=None, isld=None, name='EasyMaterial', unique_name=None, interface=None)
Constructor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unique_name
|
Optional[str]
|
By default, None. |
None
|
sld
|
Union[Parameter, float, None]
|
Real scattering length density. By default, None. |
None
|
isld
|
Union[Parameter, float, None]
|
Imaginary scattering length density. By default, None. |
None
|
name
|
str
|
Name of the material. By default, 'EasyMaterial'. |
'EasyMaterial'
|
interface
|
Calculator interface. By default, None. |
None
|
Source code in src/easyreflectometry/sample/elements/materials/material.py
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 | |
MaterialSolvated
Bases: MaterialMixture
Source code in src/easyreflectometry/sample/elements/materials/material_solvated.py
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 | |
material
property
writable
Get material.
solvent
property
writable
Get solvent.
solvent_fraction_parameter
property
Get the parameter for the fraction of layer described by the solvent.
solvent_fraction
property
writable
The Parameter for the fraction of the layer described by the solvent.
This might be the fraction of: - solvation where solvent is within the layer, or - patches of solvent in the layer where no material is present.
__init__(material=None, solvent=None, solvent_fraction=None, name=None, unique_name=None, interface=None)
Constructor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unique_name
|
Optional[str]
|
By default, None. |
None
|
material
|
Union[Material, None]
|
The material being solvated. By default, None. |
None
|
solvent
|
Union[Material, None]
|
The solvent material. By default, None. |
None
|
solvent_fraction
|
Union[Parameter, float, None]
|
Fraction of solvent in layer. E.g. solvation or surface coverage. By default, None. |
None
|
name
|
Name of the material. By default, None. |
None
|
|
interface
|
Calculator interface. By default, None. |
None
|
Source code in src/easyreflectometry/sample/elements/materials/material_solvated.py
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 | |
from_dict(obj_dict)
classmethod
Re-route the saved solvent_fraction Parameter onto _fraction.
:class:ModelBase.from_dict writes the saved Parameter to
_solvent_fraction because that's the constructor-arg name, but
the live solvent_fraction property returns self._fraction
(the field MaterialMixture maintains). Without this override the
saved fit metadata (fixed/bounds/etc.) is stranded on the unused
_solvent_fraction attribute and the active parameter keeps the
defaults from __init__.
Also re-runs _materials_constraints so the parent MaterialMixture's
mixed _sld / _isld depend on the live _fraction, not the
temporary Parameter created from the float kwarg.
Source code in src/easyreflectometry/sample/elements/materials/material_solvated.py
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 | |
Layer
Bases: BaseCore
Source code in src/easyreflectometry/sample/elements/layers/layer.py
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 | |
__init__(material=None, thickness=None, roughness=None, name='EasyLayer', unique_name=None, interface=None)
Constructor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unique_name
|
Optional[str]
|
By default, None. |
None
|
material
|
Union[Material, None]
|
The material for the layer. By default, None. |
None
|
thickness
|
Union[Parameter, float, None]
|
Layer thickness in Angstrom. By default, None. |
None
|
roughness
|
Union[Parameter, float, None]
|
Upper roughness on the layer in Angstrom. By default, None. |
None
|
name
|
str
|
Name of the layer. By default, 'EasyLayer'. |
'EasyLayer'
|
interface
|
Interface object. By default, None. |
None
|
Source code in src/easyreflectometry/sample/elements/layers/layer.py
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 | |
assign_material(material)
Assign a material to the layer interface.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
material
|
Material
|
The material to assign to the layer. |
required |
Source code in src/easyreflectometry/sample/elements/layers/layer.py
122 123 124 125 126 127 128 129 130 131 132 | |
LayerAreaPerMolecule
Bases: Layer
The LayerAreaPerMolecule class allows a layer to be defined in terms of some
molecular formula an area per molecule, and a solvent.
Source code in src/easyreflectometry/sample/elements/layers/layer_area_per_molecule.py
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 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 | |
area_per_molecule_parameter
property
Get the parameter for area per molecule.
area_per_molecule
property
writable
The Parameter that controls area per molecule.
molecule
property
Get the molecule material.
solvent
property
writable
Get the solvent material.
solvent_fraction_parameter
property
Get parameter for the fraction of the layer occupied by the solvent.
solvent_fraction
property
writable
The Parameter for the fraction of the layer occupied by the solvent.
molecular_formula
property
writable
Get the formula of molecule the layer.
__init__(molecular_formula=None, thickness=None, solvent=None, solvent_fraction=None, area_per_molecule=None, roughness=None, name='EasyLayerAreaPerMolecule', unique_name=None, interface=None)
Constructor.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
unique_name
|
Optional[str]
|
By default, None. |
None
|
molecular_formula
|
Union[str, None]
|
Formula for the molecule in the layer. By default, None. |
None
|
thickness
|
Union[Parameter, float, None]
|
Layer thickness in Angstrom. By default, None. |
None
|
solvent
|
Union[Material, None]
|
Solvent containing the molecule. By default, None. |
None
|
solvent_fraction
|
Union[Parameter, float, None]
|
Fraction of solvent in layer. Fx solvation or surface coverage. By default, None. |
None
|
area_per_molecule
|
Union[Parameter, float, None]
|
Area per molecule in the layer. By default, None. |
None
|
roughness
|
Union[Parameter, float, None]
|
Upper roughness on the layer in Angstrom. By default, None. |
None
|
name
|
str
|
Name of the layer. By default, 'EasyLayerAreaPerMolecule'. |
'EasyLayerAreaPerMolecule'
|
interface
|
Interface object. By default, None. |
None
|
Source code in src/easyreflectometry/sample/elements/layers/layer_area_per_molecule.py
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 | |
from_dict(obj_dict)
classmethod
Re-route the saved solvent_fraction Parameter and rebuild the
molecule-SLD constraint chain after :class:ModelBase.from_dict
swaps in the persisted Parameter objects.
ModelBase.from_dict writes the deserialized solvent_fraction
Parameter to self._solvent_fraction (orphan — the live property
delegates to self.material.solvent_fraction, which is
self.material._fraction). It also reassigns self._thickness
and self._area_per_molecule, but the constraint graph built in
__init__ still references the temporary Parameters created from
the float kwargs. We fix both here.
Source code in src/easyreflectometry/sample/elements/layers/layer_area_per_molecule.py
216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 | |
get_as_parameter(name, value, default_dict, unique_name_prefix=None)
This function creates a parameter for the variable name.
A parameter has a value and metadata.
If the value already is a parameter, it is returned. If the value is a number, a parameter is created with this value and metadata from the dictionary. If the value is None, a parameter is created with the default value and metadata from the dictionary.
param value: The value to use for the parameter. If None, the default value in the dictionary is used.
param name: The name of the parameter
param default_dict: Dictionary with entry for `name` containing the default value and metadata for the parameter
Source code in src/easyreflectometry/utils.py
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 | |