rarygit

Results 4 comments of rarygit

@MosGeo Thanks for replying! Python scripts for post-processing would be great. Would it be possible to add "save the pore network" to the post-processing? For example, yade-dem (c++): Extract the...

Solution in file inject.py: don't use: `if sys.version_info[0] == 3:` instead: ``` from sys import version_info if version_info[0] == 3: ``` This site was helpful: [https://stackoverflow.com/questions/9079036/how-do-i-detect-the-python-version-at-runtime](url) So now to the...

Maybe start with line 351 in file inject.py `line.append(sc_names_list[i]) #need to figure out how to grab subcat coordinates`

Thanks @waalge! That solution helped to start running "python3 main_pipe.py >> output.txt" Could also add the advice to run command 'make' in the directory ~/examples/pipe to convert .geo file to...