Files
lammps/examples/USER/mdi/driver.py
taylor-a-barnes 4a0b71f66b Add MDI example
2021-05-12 18:31:10 -04:00

18 lines
385 B
Python

import sys
import mdi
# Initialize the MDI Library
mdi.MDI_Init(sys.argv[2])
# Connect to the engine
comm = mdi.MDI_Accept_communicator()
# Determine the name of the engine
mdi.MDI_Send_Command("<NAME", comm)
name = mdi.MDI_Recv(mdi.MDI_NAME_LENGTH, mdi.MDI_CHAR, comm)
print("Engine name: " + str(name))
# Send the "EXIT" command to the engine
mdi.MDI_Send_Command("EXIT", comm)