-
Notifications
You must be signed in to change notification settings - Fork 38
Updating documentation to be more explicit in simulation block #70
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -844,6 +844,59 @@ The "run" block specifies some global parameters of the simulation run, such as | |
| "spike_threshold": -15, | ||
| }, | ||
|
|
||
| <table> | ||
| <tr> | ||
| <td>Key</td> | ||
| <td>Description</td> | ||
| <td>Type</td> | ||
| <td>Required</td> | ||
| <td>Default</td> | ||
| </tr> | ||
| <tr> | ||
| <td>tstart</td> | ||
| <td>Start time of the simulation.</td> | ||
| <td>float</td> | ||
| <td>False</td> | ||
| <td>0.0</td> | ||
| </tr> | ||
| <tr> | ||
| <td>tstop</td> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. rename to end_time for consistency |
||
| <td>Stop time of the simulation.</td> | ||
| <td>float</td> | ||
| <td>True</td> | ||
| <td></td> | ||
| </tr> | ||
| <tr> | ||
| <td>dt</td> | ||
| <td>Time step size.</td> | ||
| <td>float</td> | ||
| <td>True</td> | ||
| <td></td> | ||
| </tr> | ||
| <tr> | ||
| <td>dL</td> | ||
| <td>For compartmental cell models, used to define the minimum segment size of each given section. For a section of length L > dL, the section will be partitioned into 1 + 2 \* int(section.L / (2\*dL)) segments.</td> | ||
| <td>float</td> | ||
| <td>False</td> | ||
| <td> </td> | ||
| </tr> | ||
| <tr> | ||
| <td>spike_threshold</td> | ||
| <td>The default membrane potential value at which it can be assumed an action potential can be recorded.</td> | ||
| <td>float</td> | ||
| <td>False</td> | ||
| <td></td> | ||
| </tr> | ||
| <tr> | ||
| <td>block_step_size</td> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This name is not very clear. If I understand the description correctly I'd rename it to "reporting_skipped_frames" , "skipped_frames", "skip_report_frames", "reporting_start_frame" |
||
| <td>Used by the simulator to determine after how many time steps should it save the simulation and results (assume such behavior is available).</td> | ||
| <td>int</td> | ||
| <td>False</td> | ||
| <td></td> | ||
| </tr> | ||
| </table> | ||
|
|
||
|
|
||
| ### Conditions Configuration | ||
|
|
||
| This block specifies optional global parameters with reserved meaning associated with manipulation of the "in silico preparation". | ||
|
|
@@ -1379,4 +1432,3 @@ Allen folks to fill in | |
| For the case that the model_template follows the *bmtk* schema, the following is the expected structure of the hoc template. | ||
|
|
||
| Allen folks to fill in | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
rename to start_time for consistency with the reports sections
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@apdavison, @salvadord, @pgleeson, are you OK with the suggested renaming?