-
-
Notifications
You must be signed in to change notification settings - Fork 409
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New TARDIS flowchart and cleaning up physics walkthrough (#2111)
* adding in new flowchart * moving energy deposition pages * fixing some light-matter physics stuff * newline
- Loading branch information
1 parent
7fdaf34
commit d1632db
Showing
11 changed files
with
53 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
digraph { | ||
compound = true | ||
graph [nodesep=4, ranksep=1] | ||
config [label=<<B>Configuration</B><br/><br/> <i><Configuration object>=Configuration.from_yaml(...)</i><br/> <i><Configuration object>=Configuration.from_config_dict(...)</i>>, shape=oval] | ||
setup_sim [label=<<B><u>Setting up the Simulation</u></B> <br/><br/> <i><Simulation object>=Simulation.from_config(...)</i> <br/><br/> - Creates and calculates model <br/> - Creates and calculates plasma <br/> - Initializes Monte Carlo runner>, shape=rectangle] | ||
mc_iteration [label=<<B><u>Monte Carlo Iteration</u></B> <br/><br/> <i><Simulation object>.iterate(...)</i><br/> <br/> - Initializes packets <br/> - Propagates packets <br/> - Calculates estimators>, shape=rectangle] | ||
adv_state [label=<<B><u>Updating Plasma and Convergence</u></B> <br/><br/> <i><Simulation object>.advance_state()</i> <br/><br/> - Estimates and updates t_rad, w, and t_inner in model <br/> - Updates plasma <br/> - Checks for convergence>, shape=rectangle] | ||
spec_gen [label=<<B><u>Spectrum Generation</u></B> <br/><br/> <i>From final Monte Carlo iteration</i> <br/><br/> - Basic spectrum generation <br/> - Virtual packets <br/> - Formal integral>, shape=rectangle] | ||
subgraph cluster1 { | ||
style = rounded | ||
margin = .25 | ||
label=<<br/><br/><i><Simulation object>.run()</i><br/> >; | ||
mc_iteration -> adv_state | ||
adv_state -> mc_iteration | ||
} | ||
config -> setup_sim | ||
setup_sim -> mc_iteration [lhead=cluster1, minlen=2] | ||
adv_state -> spec_gen [ltail=cluster1] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters