Skip to content

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
def __init__(self, *args, group=None, **kwargs):
    super().__init__(*args, **kwargs)
    # Save init
    self.original_input_file = self.input_file

    self.input = {"param": None, "beam": None, "lattice": None}
    self.output = {}
    self.numprocs = 1

    # Call configure
    if self.input_file:
        infile = lume_tools.full_path(self.input_file)
        assert os.path.exists(
            infile
        ), f"Genesis2 input file does not exist: {infile}"
        self.load_input(self.input_file)

    else:
        # Use default
        self.input["param"] = parsers.MAIN_INPUT_DEFAULT.copy()
        self.vprint("Using default input")
    self.configure()

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
def archive(self, 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.

    """
    if not h5:
        h5 = "genesis_" + self.fingerprint() + ".h5"

    if isinstance(h5, str):
        fname = os.path.expandvars(h5)
        g = h5py.File(fname, "w")
        self.vprint(f"Archiving to file {fname}")
    else:
        g = h5

    # Write basic attributes
    archive.genesis_init(g)

    # All input
    archive.write_input_h5(g, self.input, name="input")

    # All output
    archive.write_output_h5(g, self.output, name="output", verbose=self.verbose)

    return h5
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
def final_particles(self):
    """
    Returns a ParticleGroup object from dpa data (if present)
    """
    if "dpa" in self.output["data"]:
        return final_particles(self)
    else:
        return None
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
def get_executable(self):
    """
    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'
    """
    if self.use_mpi:
        exe = lume_tools.find_executable(
            exename=self.command_mpi, envname=self.command_mpi_env
        )
    else:
        exe = lume_tools.find_executable(
            exename=self.command, envname=self.command_env
        )
    return exe
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
def get_run_script(self, 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.
    """

    n_procs = self.numprocs

    exe = self.get_executable()

    if self.use_mpi:
        # mpi_exe could be a complicated string like:
        # 'srun -N 1 --cpu_bind=cores {n} {command_mpi}'
        # 'mpirun -n {n} {command_mpi}'

        cmd = self.mpi_run.format(nproc=n_procs, command_mpi=exe)

    else:
        if n_procs > 1:
            raise ValueError("Error: n_procs > 1 but use_mpi = False")
        cmd = exe

    _, infile = os.path.split(self.input_file)

    runscript = cmd.split() + [infile]

    if write_to_path:
        with open(os.path.join(self.path, "run"), "w") as f:
            f.write(" ".join(runscript))

    return runscript
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
def load_archive(self, h5, configure=True):
    """
    Loads input and output from archived h5 file.

    See: Genesis.archive
    """
    if isinstance(h5, str):
        fname = os.path.expandvars(h5)
        g = h5py.File(fname, "r")

        glist = archive.find_genesis_archives(g)
        n = len(glist)
        if n == 0:
            # legacy: try top level
            message = "legacy"
        elif n == 1:
            gname = glist[0]
            message = f"group {gname} from"
            g = g[gname]
        else:
            raise ValueError(f"Multiple archives found in file {fname}: {glist}")

        self.vprint(f"Reading {message} archive file {h5}")
    else:
        g = h5

    self.input = archive.read_input_h5(g["input"])
    self.output = archive.read_output_h5(g["output"], verbose=self.verbose)

    self.vprint("Loaded from archive. Must reconfigure to run again.")
    self.configured = False

    if configure:
        self.configure()
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
def run(self):
    """
    Run Genesis2
    """

    # Clear previous output
    self.output = {}
    run_info = self.output["run_info"] = {"error": False}

    t1 = time()
    run_info["start_time"] = t1

    # Debugging
    self.vprint(f"Running genesis in {self.path}")

    # Write all input
    self.write_input()

    runscript = self.get_run_script()
    run_info["run_script"] = " ".join(runscript)

    try:
        if self.timeout:
            res = tools.execute2(runscript, timeout=self.timeout, cwd=self.path)
            log = res["log"]
            self.error = res["error"]
            run_info["why_error"] = res["why_error"]
        else:
            # Interactive output, for Jupyter
            log = []
            for path in tools.execute(runscript, cwd=self.path):
                self.vprint(path, end="")
                log.append(path)

        self.log = log
        self.error = False

        self.load_output()

    except Exception as ex:
        print("Run Aborted", ex)
        error_str = traceback.format_exc()
        self.error = True
        run_info["why_error"] = str(error_str)

    finally:
        run_info["run_time"] = time() - t1
        run_info["run_error"] = self.error

    self.finished = True
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
def write_input(self):
    """
    Writes all input files
    """
    self.write_input_file()

    self.write_beam()
    self.write_lattice()

    # Write the run script
    self.get_run_script()
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
def write_input_file(self):
    """
    Write parameters to main .in file

    """
    lines = tools.namelist_lines(self.param, start="$newrun", end="$end")

    with open(self.input_file, "w") as f:
        for line in lines:
            f.write(line + "\n")
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
def write_wavefront(self, h5=None):
    """
    Write an openPMD wavefront from the dfl
    """

    if not h5:
        h5 = "genesis_wavefront_" + self.fingerprint() + ".h5"

    if isinstance(h5, str):
        fname = os.path.expandvars(h5)
        g = h5py.File(fname, "w")
        self.vprint(f"Writing wavefront (dfl data) to file {fname}")
    else:
        g = h5

    dfl = self.output["data"]["dfl"]
    param = self.output["param"]
    writers.write_openpmd_wavefront_h5(g, dfl=dfl, param=param)

    return h5