mumax3c.delete#
- mumax3c.delete(system)#
Deletes micromagnetic system files.
After the system is driven, if
save=True
is passed, the files obtained from a mumax3 run are saved in the current directory.oommfc.delete
is a convenience function for deleting all of them. More precisely, the directory with name the same assystem.name
is deleted.- Parameters:
system (micromagneticmodel.System) – System whose files are deleted.
- Raises:
FileNotFoundError – If the directory with
system.name
does not exist.
Examples
Delete system files.
>>> import os >>> import mumax3c as calc >>> import micromagneticmodel as mm ... >>> system = mm.examples.macrospin() >>> td = calc.TimeDriver() >>> td.drive(system, t=1e-12, n=5, save=True) Running mumax3... >>> os.path.exists(system.name) True >>> calc.delete(system) # deletes directory >>> os.path.exists(system.name) False