material
DEFAULTS = {'sld': {'description': 'The real scattering length density for a material in e-6 per squared angstrom.', 'url': 'https://www.ncnr.nist.gov/resources/activation/', 'value': 4.186, 'unit': '1 / angstrom^2', 'min': -np.inf, 'max': np.inf, 'fixed': True}, 'isld': {'description': 'The imaginary scattering length density for a material in e-6 per squared angstrom.', 'url': 'https://www.ncnr.nist.gov/resources/activation/', 'value': 0.0, 'unit': '1 / angstrom^2', 'min': -np.inf, 'max': np.inf, 'fixed': True}}
module-attribute
BaseCore
Bases: ModelBase
Local base class for sample-tree objects (Material, Layer, assemblies).
Built on top of easyscience.base_classes.ModelBase (the replacement for
the deprecated ObjBase). On top of ModelBase this class adds:
- a
nameproperty - an
interfaceproperty whose setter propagates the calculator interface to child objects and (re)generates bindings - a yaml-formatted
__repr__driven by an abstract_dict_repr - an
_get_linkable_attributescompatibility shim used by the calculator'sInterfaceFactoryTemplate.generate_bindings - an
as_dictalias forto_dict
Subclass __init__ convention:
1. Build child Parameters / sub-objects.
2. Call super().__init__(name=..., unique_name=...).
3. Assign children to backing fields (self._sld = sld etc.) or pass
them as **kwargs to this base class (transitional path; each
kwarg is stored as a plain instance attribute).
4. Last: self.interface = interface (triggers generate_bindings).
Source code in src/easyreflectometry/sample/base_core.py
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 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 | |
interface
property
writable
The calculator interface attached to this object (may be None).
name
property
writable
Common (display-friendly) name.
generate_bindings()
Propagate the interface to child objects, then bind via the calculator.
We propagate to any child whose class advertises an interface property
with a setter. That includes both the new BaseCore-based children and
legacy BasedBase-derived collections (which extend SerializerComponent,
not NewBase).
Source code in src/easyreflectometry/sample/base_core.py
91 92 93 94 95 96 97 98 99 100 101 102 103 104 | |
get_parameters()
Compatibility shim for legacy callers; prefer :meth:get_all_parameters.
Source code in src/easyreflectometry/sample/base_core.py
162 163 164 | |
get_all_variables()
Discover Parameters/Descriptors across both class-level and instance-level attrs.
ModelBase.get_all_variables walks dir(self), which NewBase restricts
to class attributes only. During the transition some subclasses still
store child Parameters as plain instance attributes (see the kwargs path
in :meth:__init__); those are invisible to dir(). We therefore also
scan self.__dict__ for DescriptorBase instances and for child
ModelBase objects whose own get_all_variables we recurse into.
Source code in src/easyreflectometry/sample/base_core.py
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 | |
to_dict(skip=None)
Serialize, skipping the calculator interface and unique_name by default.
The calculator (CalculatorFactory) is not serializable and is not part
of the model's persistent state — round-trip code that needs it back
reattaches it after from_dict. The legacy ObjBase-based pipeline
achieved the same by never including interface in its _kwargs
encoding; we replicate that here.
unique_name is also stripped by default, matching the legacy
BasedBase.as_dict contract. The installed SerializerBase does not
propagate per-object _default_unique_name to nested children — if
we leave it in, child Parameters end up with explicit unique_names in
the dict (e.g. Parameter_0) that subsequently collide on reload when
the global counter restarts from 0.
Pass a copy of skip to super since NewBase.to_dict mutates the
list (appends unique_name / display_name if those are default).
Source code in src/easyreflectometry/sample/base_core.py
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 | |
as_dict(skip=None)
Compatibility alias for :meth:to_dict.
Source code in src/easyreflectometry/sample/base_core.py
228 229 230 | |
__repr__()
Yaml-formatted multi-line string built from :attr:_dict_repr.
Source code in src/easyreflectometry/sample/base_core.py
238 239 240 | |
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 | |
apply_default_limits(parameter, kind)
Apply default min/max to a parameter if current bounds are infinite.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
parameter
|
Parameter
|
The parameter to adjust. |
required |
kind
|
str
|
One of 'thickness', 'roughness', 'sld', 'isld', 'scale'. |
required |
Source code in src/easyreflectometry/limits.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | |
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 | |