7 lines
163 B
Python
7 lines
163 B
Python
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
import os
|
||
|
from subprocess import call
|
||
|
|
||
|
|
||
|
call('DAMASK_spectral -l tensionX.load -g 20grains16x16x16.geom', shell=True)
|