Base
lume.base.Base
Bases: ABC
Base Interface for LUME-compatible code.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
input_file |
str, optional
|
The input file to be used, by default None |
None
|
initial_particles |
dict, optional
|
Initial Particle metadata to be used, by default None |
None
|
verbose |
bool, optional
|
Whether or not to produce verbose output, by default False |
False
|
timeout |
float, optional
|
The timeout in seconds to be used, by default None |
None
|
Source code in lume/base.py
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 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 |
|
configured
writable
property
Get or set the configured flag state.
error
writable
property
Get or set the error flag state.
finished
writable
property
Get or set the finished flag state.
initial_particles
writable
property
Initial Particles
input
writable
property
Input data as a dictionary
input_file
writable
property
Get or set the input file to be processed.
output
writable
property
require openPMD standard, in the future we can add more methods for libs such as pandas Dataframes, xarray DataArrays and Dask Arrays.
timeout
writable
property
Read or configure the timeout in seconds.
verbose
writable
property
Read or configure the verbose flag.
archive(h5=None)
abstractmethod
Dump inputs and outputs into HDF5 file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h5 |
str or h5py.File
|
The filename or handle to HDF5 file in which to write the information. If not in informed, a new file is generated. |
None
|
Returns:
Name | Type | Description |
---|---|---|
h5 |
h5py.File
|
Handle to the HDF5 file. |
Source code in lume/base.py
271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 |
|
configure()
abstractmethod
Configure and set up for run.
Source code in lume/base.py
88 89 90 91 92 93 |
|
copy()
Returns a deep copy of this object.
If a tempdir is being used, will clear this and deconfigure.
Source code in lume/base.py
180 181 182 183 184 185 186 187 188 |
|
fingerprint()
Data fingerprint (hash) using the input parameters.
Returns:
Name | Type | Description |
---|---|---|
fingerprint |
str
|
The hash for this object based on the input parameters. |
Source code in lume/base.py
169 170 171 172 173 174 175 176 177 178 |
|
from_hdf5(filename)
classmethod
Load an object from and hdf5.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename |
str
|
required |
Source code in lume/base.py
259 260 261 262 263 264 265 266 267 268 269 |
|
from_yaml(yaml_file, parse_input=False)
classmethod
Returns an object instantiated from a YAML config file
Will load intial_particles from an h5 file.
Source code in lume/base.py
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 |
|
load_archive(h5, configure=True)
abstractmethod
Loads input and output from archived h5 file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
h5 |
str or h5py.File
|
The filename or handle on h5py.File from which to load input and output data |
required |
configure |
bool, optional
|
Whether or not to invoke the configure method after loading, by default True |
True
|
Source code in lume/base.py
289 290 291 292 293 294 295 296 297 298 299 300 301 |
|
reset()
Reset this object to its initial state.
Source code in lume/base.py
190 191 192 193 194 |
|
run()
abstractmethod
Execute the code.
Source code in lume/base.py
95 96 97 98 99 100 |
|
to_hdf5(filename)
Serialize an object to an hdf5 file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
filename |
str
|
required |
Source code in lume/base.py
248 249 250 251 252 253 254 255 256 257 |
|