API
genesis.Genesis2 ¶
Genesis2(*args, group=None, **kwargs)
Bases: CommandWrapper
Files will be written into a temporary directory within workdir. If workdir=None, a location will be determined by the system.
Source code in genesis/genesis2.py
27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 | |
Functions¶
genesis.Genesis2.archive ¶
archive(h5=None)
Archive all data to an h5 handle or filename.
If no file is given, a file based on the fingerprint will be created.
Source code in genesis/genesis2.py
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 | |
genesis.Genesis2.final_particles ¶
final_particles()
Returns a ParticleGroup object from dpa data (if present)
Source code in genesis/genesis2.py
342 343 344 345 346 347 348 349 | |
genesis.Genesis2.get_executable ¶
get_executable()
Gets the full path of the executable from .command, .command_mpi Will search environmental variables: Genesis2.command_env='GENESIS2_BIN' Genesis2.command_mpi_env='GENESIS2_MPI_BIN'
Source code in genesis/genesis2.py
224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | |
genesis.Genesis2.get_run_script ¶
get_run_script(write_to_path=True)
Assembles the run script usg self.mpi_run string of the form: 'mpirun -n {n} {command_mpi}' Optionally writes a file 'run' with this line to path.
Source code in genesis/genesis2.py
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 | |
genesis.Genesis2.load_archive ¶
load_archive(h5, configure=True)
Loads input and output from archived h5 file.
See: Genesis.archive
Source code in genesis/genesis2.py
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 | |
genesis.Genesis2.run ¶
run()
Run Genesis2
Source code in genesis/genesis2.py
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 | |
genesis.Genesis2.write_input ¶
write_input()
Writes all input files
Source code in genesis/genesis2.py
130 131 132 133 134 135 136 137 138 139 140 | |
genesis.Genesis2.write_input_file ¶
write_input_file()
Write parameters to main .in file
Source code in genesis/genesis2.py
142 143 144 145 146 147 148 149 150 151 | |
genesis.Genesis2.write_wavefront ¶
write_wavefront(h5=None)
Write an openPMD wavefront from the dfl
Source code in genesis/genesis2.py
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | |