In [1]:
from thermof import Simulation
from thermof import Parameters
from thermof.sample import mof5_file

In [ ]:
par = Parameters()
# par.lammps['replication'] = '2 2 2'          # Define cell replication directly
# par.thermof['min_cell_size']= [50, 50, 50]   # Define minimum cell size to get required replication

Create Lammps data and input files


In [ ]:
sim = Simulation(parameters=par, mof=mof5_file)
sim.simdir = 'mof5'
sim.initialize()

In [ ]: