Skip to content

Commit

Permalink
updated code example simulation.md
Browse files Browse the repository at this point in the history
  • Loading branch information
nh916 committed Sep 26, 2023
1 parent 5b58c15 commit 7541f8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docs/examples/simulation.md
Original file line number Diff line number Diff line change
Expand Up @@ -250,10 +250,10 @@ experiment.computation += [init, equilibration, bulk, ana]
New we'd like to upload files associated with our simulation. First, we'll instantiate our File nodes under a specific project.

```python
packing_file = cript.File(name="Initial simulation box snapshot with roughly packed molecules", type="computation_snapshot", source="path/to/local/file")
forcefield_file = cript.File(name="Forcefield definition file", type="data", source="path/to/local/file")
snap_file = cript.File(name="Bulk measurement initial system snap shot", type="computation_snapshot", source="path/to/local/file")
final_file = cript.File(name="Final snapshot of the system at the end the simulations", type="computation_snapshot", source="path/to/local/file")
packing_file = cript.File(name="Initial simulation box snapshot with roughly packed molecules", type="computation_snapshot", source="path/to/local/file", extension=".csv")
forcefield_file = cript.File(name="Forcefield definition file", type="data", source="path/to/local/file", extension=".pdf")
snap_file = cript.File(name="Bulk measurement initial system snap shot", type="computation_snapshot", source="path/to/local/file", extension=".png")
final_file = cript.File(name="Final snapshot of the system at the end the simulations", type="computation_snapshot", source="path/to/local/file", extension=".jpeg")
```

!!! note
Expand Down

0 comments on commit 7541f8f

Please sign in to comment.