Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

dvc.yaml 1.6 KB

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  1. stages:
  2. NPT:
  3. cmd: "python -c \"from src.LammpsSimulator import LammpsSimulator; LammpsSimulator.load(name='NPT').run_and_save()\"\
  4. \ "
  5. deps:
  6. - NaCl.xyz
  7. - templates/npt.lmp
  8. outs:
  9. - NPT.in:
  10. cache: false
  11. - NPT.lammpstraj
  12. - NPT.log
  13. params:
  14. - NPT
  15. NVT:
  16. cmd: "python -c \"from src.LammpsSimulator import LammpsSimulator; LammpsSimulator.load(name='NVT').run_and_save()\"\
  17. \ "
  18. deps:
  19. - NPT.in
  20. - NPT.lammpstraj
  21. - NPT.log
  22. - templates/nvt.lmp
  23. outs:
  24. - NVT.in:
  25. cache: false
  26. - NVT.lammpstraj
  27. - NVT.log
  28. params:
  29. - NVT
  30. MDSuiteDB:
  31. cmd: "python -c \"from src.MDSuite import MDSuiteDB; MDSuiteDB.load(name='MDSuiteDB').run_and_save()\"\
  32. \ "
  33. deps:
  34. - NVT.in
  35. - NVT.lammpstraj
  36. - NVT.log
  37. outs:
  38. - mdsuite
  39. EinsteinDiffusionNode:
  40. cmd: "python -c \"from src.MDSuite import EinsteinDiffusionNode; EinsteinDiffusionNode.load(name='EinsteinDiffusionNode').run_and_save()\"\
  41. \ "
  42. deps:
  43. - mdsuite
  44. params:
  45. - EinsteinDiffusionNode
  46. metrics:
  47. - nodes/EinsteinDiffusionNode/metrics_no_cache.json:
  48. cache: false
  49. RadialDistributionFunctionNode:
  50. cmd: "python -c \"from src.MDSuite import RadialDistributionFunctionNode; RadialDistributionFunctionNode.load(name='RadialDistributionFunctionNode').run_and_save()\"\
  51. \ "
  52. deps:
  53. - mdsuite
  54. outs:
  55. - rdf.png:
  56. cache: false
  57. plots:
  58. - nodes/RadialDistributionFunctionNode/rdf.csv:
  59. cache: false
  60. x: r
  61. x_label: distance r
  62. y_label: g(r)
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...