From 3870dc73b656c84af8dbf3012ca93e3df8ed62bc Mon Sep 17 00:00:00 2001 From: Cody Martin Date: Fri, 2 Dec 2022 13:55:40 -0700 Subject: [PATCH] Improve tutorial documentation (#1408) --- bin/trick-CP | 2 +- .../running_a_simulation/Input-File.md | 2 +- .../simulation_capabilities/Data-Record.md | 2 +- docs/tutorial/ATutAnalyticSim.md | 33 ++++++++++-------- docs/tutorial/ATutDynamicEvents.md | 2 +- docs/tutorial/ATutIntroduction.md | 22 +++++++----- docs/tutorial/ATutMonteCarlo.md | 8 ++--- docs/tutorial/ATutNumericSim.md | 33 +++++++++--------- docs/tutorial/ATutRecordingData.md | 4 +-- docs/tutorial/ATutRunningRealtime.md | 12 +++---- docs/tutorial/ATutTrickView.md | 14 ++++---- docs/tutorial/TutVariableServer.md | 20 +++++------ docs/tutorial/images/SimMakeComplete.png | Bin 8644 -> 0 bytes docs/tutorial/images/TrickPaths.png | Bin 12214 -> 0 bytes include/trick/DRHDF5.hh | 2 +- .../Cannon/SIM_cannon_analytic/S_define | 2 +- 16 files changed, 83 insertions(+), 75 deletions(-) delete mode 100644 docs/tutorial/images/SimMakeComplete.png delete mode 100644 docs/tutorial/images/TrickPaths.png diff --git a/bin/trick-CP b/bin/trick-CP index f537fe5a..67430b0a 100755 --- a/bin/trick-CP +++ b/bin/trick-CP @@ -60,7 +60,7 @@ if ( -f $sdefine ) { system("make -f makefile " . $makefileAddArgs) ; exit $? >> 8; } else { - print "S_define does not exist" ; + print "S_define does not exist\n" ; exit 1 ; } diff --git a/docs/documentation/running_a_simulation/Input-File.md b/docs/documentation/running_a_simulation/Input-File.md index be3b1940..02a9fd80 100644 --- a/docs/documentation/running_a_simulation/Input-File.md +++ b/docs/documentation/running_a_simulation/Input-File.md @@ -255,7 +255,7 @@ There are several ways to include files in Python. ```python # One way is to use the execfile command -execfile("Modified_data/data_record.py") +exec(open("Modified_data/data_record.py").read()) # Another way is to make the included file a module and import it. # Import search paths may be added using the sys.path.append command. diff --git a/docs/documentation/simulation_capabilities/Data-Record.md b/docs/documentation/simulation_capabilities/Data-Record.md index 4f418872..80325a16 100644 --- a/docs/documentation/simulation_capabilities/Data-Record.md +++ b/docs/documentation/simulation_capabilities/Data-Record.md @@ -382,7 +382,7 @@ The following data-types are used in Trick versions >= 10, that is for, *vv* = " ### DRHDF5 Recording Format HDF5 recording format is an industry conforming HDF5 formatted file. Files written in this format are named -log_.hd5. The contents of this file type are readable by the Trick Data Products packages from +log_.h5. The contents of this file type are readable by the Trick Data Products packages from Trick 07 to the current version. The contents of the file are binary and is not included here. The HDF5 layout of the file follows. diff --git a/docs/tutorial/ATutAnalyticSim.md b/docs/tutorial/ATutAnalyticSim.md index fc8fdd1f..d829f32a 100644 --- a/docs/tutorial/ATutAnalyticSim.md +++ b/docs/tutorial/ATutAnalyticSim.md @@ -479,7 +479,7 @@ our Cannonball simulation is shown in Listing 7, below. ```c++ /************************TRICK HEADER************************* PURPOSE: - (This S_define works with the RUN_analytic input file) + (S_define file for SIM_cannon_analytic) LIBRARY DEPENDENCIES: ( (cannon/src/cannon_init.c) @@ -507,8 +507,6 @@ class CannonSimObject : public Trick::SimObject { CannonSimObject dyn ; ``` - - The `S_define` file syntax is C++ with a couple of Trick specific constructs. Let us dissect this S_define file to see what makes it tick. @@ -647,14 +645,19 @@ In the files that we have created so far, the file paths in `#include` directive and in the `LIBRARY_DEPENDENCY` sections, are **relative** paths. These paths are relative to a **base-path**, that we still need to specify. -For example, the `S_define` file listed above, `#includes` the relative path: -`cannon/include/cannon.h`. We intend for this path to be relative to the -`trick_models` directory that we created in our `$HOME` directory. The complete +For example, the `S_define` file listed above `#includes` the relative path: +`cannon/include/cannon_analytic.h`. We intend for this path to be relative to the +`models` directory that we created in our `SIM_cannon_analytic` directory. The complete path to our cannon.h header file should be: -![Trick Path Construction](images/TrickPaths.png) +``` +${HOME}/trick_sims/SIM_cannon_analytic/models/cannon/include/cannon_analytic.h +``` -So, we need to specify the base-path(s), to the compilers, and to Trick by adding +We need to specify either the absolute path to the `models` directory, or the +relative location of the `models` directory with respect to the top-level +simulation directory (the location of S_define) as the base-path. +We can specify the base-path(s) to the compilers, and to Trick, by adding -I*dir* options, that contain the base-paths, to `$TRICK_CFLAGS` and `$TRICK_CXXFLAGS`. @@ -670,8 +673,8 @@ TRICK_CFLAGS += -Imodels TRICK_CXXFLAGS += -Imodels ``` -When Trick encounters relative paths, these base-paths will be prepended to the -relative paths to create a complete path to the file, thus allowing it to be +When Trick encounters relative paths in an S_define, it prepends these base-path(s) +to the relative paths to create a complete path to the file, thus allowing it to be located. #### Additional Compiler Flag Recommendations @@ -708,15 +711,17 @@ If you typed everything perfectly... Trick is installed properly... there are no bugs in the tutorial... the stars are aligned... and Trick is in a good mood... You should, ultimately see : -![Simulation Make Complete](images/SimMakeComplete.png) +``` +Trick Build Process Complete +``` Now, take a look at the sim directory. Is there an `S_main*.exe` file?? (* is a wildcard, instead of * you will see the name of your platform). If so, cool deal. If not, scream!, then take a look at the next section "Troubleshooting A Bad Build". If all went well, you will notice several other files now resident in the `SIM_cannon_analytic` directory. ```bash % ls -Modified_data S_overrides.mk makefile -RUN_test S_sie.resource trick.zip -S_define S_source.hh +S_overrides.mk makefile +S_sie.resource trick.zip +S_define S_source.hh S_main_.exe build ``` diff --git a/docs/tutorial/ATutDynamicEvents.md b/docs/tutorial/ATutDynamicEvents.md index c55d7382..eb567b32 100644 --- a/docs/tutorial/ATutDynamicEvents.md +++ b/docs/tutorial/ATutDynamicEvents.md @@ -211,7 +211,7 @@ Add the [cannon_impact](#listing_cannon_impact) function, listed above, to the b Add the following job specification, to run our cannon_impact job. ``` -("dynamic_event") cannon_impact( &cannon) ; +("dynamic_event") cannon_impact( &cannon ) ; ``` to the end of the list of jobs in the CannonSimObject. diff --git a/docs/tutorial/ATutIntroduction.md b/docs/tutorial/ATutIntroduction.md index 2185ffdf..90b2894f 100644 --- a/docs/tutorial/ATutIntroduction.md +++ b/docs/tutorial/ATutIntroduction.md @@ -68,24 +68,30 @@ its capabilities. If Trick is not already installed on your machine, then you will need to do that first, by following the directions at: [Install Guide](/trick/documentation/install_guide/Install-Guide). -Once Trick is installed on your machine, you will need add the Trick **bin** -directory to your execution path. For the sake of example, let us assume that +The rest of the tutorial is written as if the Trick **bin** directory is +available on your execution path. This isn't strictly necessary, but allows +you to call `trick-CP` instead of `/full/path/to/trick/bin/trick-CP`. Follow +the steps below if you would like to add the **bin** directory to your PATH. + +For the sake of example, let us assume that you installed Trick in your home directory, and you used the default name for -the repository, which is **trick**. If you named it something different, then +the repository, which is **trick**. If you named it something different, then use that name instead in the scripts below. -If you are using **bash or ksh**, then add the following lines to the file that is automatically sourced by your terminal. Based on your platform this could be **.profile, .bash_profile, .bashrc, .zshrc** or others. Google "How to edit PATH variable" on google to find a wealth of information on this subject. +If you are using **bash or ksh**, then add the following lines to the file +that is automatically sourced by your terminal. Based on your platform this +could be **.profile, .bash_profile, .bashrc, .zshrc** or others. Google "How +to edit PATH variable" on google to find a wealth of information on this +subject. ```bash -export TRICK_HOME="${HOME}/trick" -export PATH=${PATH}:${TRICK_HOME}/bin +export PATH=${PATH}:${HOME}/trick/bin ``` If you are using **csh** or **tcsh**, then add the following lines to your **.cshrc** file. ```csh -setenv TRICK_HOME ${HOME}/trick -setenv PATH ${PATH}:${TRICK_HOME}/bin +setenv PATH ${PATH}:${HOME}/trick/bin ``` Close and then re-open your terminal window. diff --git a/docs/tutorial/ATutMonteCarlo.md b/docs/tutorial/ATutMonteCarlo.md index ed8961a1..d35972f3 100644 --- a/docs/tutorial/ATutMonteCarlo.md +++ b/docs/tutorial/ATutMonteCarlo.md @@ -184,7 +184,7 @@ trick-dre & Create a sub-directory called *RUN_test* in your simulation directory. In this new directory create an input file named *test.py*. This input file executes the data recording file you saved above and stops the simulation after 10 seconds of simulation time. ```python -execfile("monte_cannon.dr") +exec(open("monte_cannon.dr").read()) trick.stop(10) ``` @@ -253,7 +253,7 @@ Create a new directory called RUN_file and place the following python script in ```python # -*- coding: UTF-8 -*- -execfile("monte_cannon.dr") +exec(open("monte_cannon.dr").read()) # Enable Monte Carlo. trick.mc_set_enabled(1) @@ -282,7 +282,7 @@ Random Input Generation provides users with the ability to statistically generat ### Script ```python # -*- coding: UTF-8 -*- -execfile("data/monte_cannon.dr") +exec(open("data/monte_cannon.dr").read()) # Enable Monte Carlo. trick.mc_set_enabled(1) @@ -398,7 +398,7 @@ int cannon_master_post(CANNON *C) ```python # -*- coding: UTF-8 -*- -execfile("data/monte_cannon.dr") +exec(open("data/monte_cannon.dr").read()) # Enable Monte Carlo. trick.mc_set_enabled(1) diff --git a/docs/tutorial/ATutNumericSim.md b/docs/tutorial/ATutNumericSim.md index 89ae0253..4d25d598 100644 --- a/docs/tutorial/ATutNumericSim.md +++ b/docs/tutorial/ATutNumericSim.md @@ -27,7 +27,7 @@ ## How Trick Does Numerical Integration The type of model that we created in the last section relied on the fact that -the cannon ball problem has an closed-form solution from which we can +the cannon ball problem has a closed-form solution from which we can immediately calculate the cannon ball state [position, velocity] at any arbitrary time. In real-world simulation problems, this will almost never be the case. @@ -140,11 +140,8 @@ Producing simulation states by numerical integration requires that the derivativ and integration jobs be called at the appropriate rate and times. This requires a properly configured integration scheduler. -First,an integration scheduler has to be instantiated in the S_define. Then, in -the input files - -1. In the S_define file, define the integration with a declaration of the -following form: +First, instantiate an integration scheduler in the S_define with a declaration +of the following form: ```c++ IntegLoop integLoopName ( integrationTimeStep ) listOfSimObjectNames ; @@ -153,16 +150,18 @@ IntegLoop integLoopName ( integrationTimeStep ) listOfSimObjectNames ; * Jobs within a simObject that are tagged "derivative" or "integration" will be dispatched to the associated integration scheduler. -In the input file, call the IntegLoop **getIntegrator()** method to specify +Then, in the input file, call the IntegLoop **getIntegrator()** method to specify the integration algorithm of choice and the number of state variables to be integrated. -*integLoopName*.getIntegrator( *algorithm*, *N* ); +```py +integLoopName.getIntegrator( algorithm, N ); +``` * *algorithm* is a enumeration value that indicates the numerical integration algorithm to be used, such as: `trick.Euler`, `trick.Runge_Kutta_2`, -`trick.Runge_Kutta_4`. A complete list can be seen Integrator.hh, in -`${TRICK_HOME}/include/trick/Integrator.hh` . +`trick.Runge_Kutta_4`. A complete list is visible in Integrator.hh, in +`${TRICK_HOME}/include/trick/Integrator.hh`. * N is the number of state variables to be integrated. @@ -192,7 +191,7 @@ And then copy the sim directory. ### Create **cannon_numeric.h.** In this new simulation, we're going to create two new functions, 1) -`cannon_deriv()` [our derivative job], 2) `cannon_integ ()` [our integration job]. +`cannon_deriv()` [our derivative job], and 2) `cannon_integ ()` [our integration job]. We'll put prototypes for each these functions into `cannon_numeric.h`. This new header file which will replace `cannon_analytic.h`. @@ -357,8 +356,8 @@ Replace: with: ```c++ - ("derivative") cannon_deriv( &cannon) ; - ("integration") trick_ret= cannon_integ( & cannon); + ("derivative") cannon_deriv( &cannon ) ; + ("integration") trick_ret= cannon_integ( & cannon ) ; ``` ### Add Integration Scheduler and Integrator @@ -385,7 +384,7 @@ The updated S_define is: ```c++ /**************************************************************** -PURPOSE: (S_define File for SIM_cannon_numeric.) +PURPOSE: (S_define file for SIM_cannon_numeric) LIBRARY_DEPENDENCY: ((cannon/src/cannon_init.c) (cannon/src/cannon_numeric.c) (cannon/src/cannon_shutdown.c)) @@ -399,9 +398,9 @@ class CannonSimObject : public Trick::SimObject { CannonSimObject() { ("initialization") cannon_init( &cannon ) ; ("default_data") cannon_default_data( &cannon ) ; - ("derivative") cannon_deriv( &cannon) ; - ("integration") trick_ret= cannon_integ( &cannon); - ("shutdown") cannon_shutdown( &cannon); + ("derivative") cannon_deriv( &cannon ) ; + ("integration") trick_ret= cannon_integ( &cannon ) ; + ("shutdown") cannon_shutdown( &cannon ) ; } }; diff --git a/docs/tutorial/ATutRecordingData.md b/docs/tutorial/ATutRecordingData.md index 7bd44ca6..8c5f6cdd 100644 --- a/docs/tutorial/ATutRecordingData.md +++ b/docs/tutorial/ATutRecordingData.md @@ -26,7 +26,7 @@ recording editor --- aka Dr. Dre) or you may create it manually. * **Step 1.** In the "DR Name" entry box, enter my_cannon. * **Step 2.** In the "DR Cycle" entry box, change 0.1 to 0.01. * **Step 3.** In the "Variables" pane, double-click dyn, then double-click cannon. -* **Step 4.** Double-click pos[2]. The result should result in dyn.cannon.pos[0] +* **Step 4.** Double-click pos[2] and click OK. The result should result in dyn.cannon.pos[0] and dyn.cannon.pos[1] appearing in the "Selected Variables" pane. * **Step 5.** Choose File->Save. In the "Save" dialog, enter the file name cannon.dr. Save cannon.dr in the Modified_data directory. @@ -40,7 +40,7 @@ text file. #### Running The Simulation And Recording Data The simulation must know about the data recording file created in the last -section. This is accomplished by adding execfile to the simulation input file. +section. This is accomplished by adding exec to the simulation input file. ```bash % cd $HOME/trick_sims/SIM_cannon_analytic/RUN_test diff --git a/docs/tutorial/ATutRunningRealtime.md b/docs/tutorial/ATutRunningRealtime.md index 3e58960b..2b2d6b97 100644 --- a/docs/tutorial/ATutRunningRealtime.md +++ b/docs/tutorial/ATutRunningRealtime.md @@ -48,15 +48,15 @@ is beating the system clock, it pauses. If it is falling behind, it registers waiting for the beginning of the next software frame to start the simulation jobs. If interval timers are not used, Trick will spin waiting for the next beat. -`trick.exec_set_freeze_command()` - brings up the simulation in a frozen -(non-running) state. - `trick.exec_set_enable_freeze()` - allows the user to toggle the simulation from a frozen state to a running state at will. +`trick.exec_set_freeze_command()` - brings up the simulation in a frozen +(non-running) state. + `trick.sim_control_panel_set_enabled(True)` or -`simControlPanel = trick.SimControlPanel() & trick.add_external_application(simControlPanel)` - - brings up the simulation control panel GUI. +`simControlPanel = trick.SimControlPanel() & trick.add_external_application(simControlPanel)` - +brings up the simulation control panel GUI. The `realtime.py` file must be included in the RUN_test/input.py file. When finished, the latest version of the input file should look like the following: @@ -100,7 +100,7 @@ Some items to note about the simulation control panel for your future use: (does not complete all jobs during the software frame) and display them in the tiny box next to the simulation name. If the simulation overruns, the sim will run as fast as it can "to catch up" to where it should be. - * Using the File menu at the top, you may set a freeze point in the future. + * Using the Actions menu at the top, you may set a freeze point in the future. --- diff --git a/docs/tutorial/ATutTrickView.md b/docs/tutorial/ATutTrickView.md index 0d9ccc96..8b0ce448 100644 --- a/docs/tutorial/ATutTrickView.md +++ b/docs/tutorial/ATutTrickView.md @@ -60,13 +60,15 @@ to 10 meters. 1. Notice that dyn.cannon.vel[0] is 43.30... meters per second. To view it in feet per second: * Left Click on the variable dyn.cannon.vel[0] on the Variable table. - * Left Click on the "m/s" in the Unit column to bring up a drop-down list. - * Select **ft/s**. Notice that the value of dyn.cannon.vel[0] changes to + * Double Click on the "m/s" in the Unit column to edit the field. + * Type **ft/s**. Notice that the value of dyn.cannon.vel[0] changes to 142.06... ft/s. 1. Resume the simulation run by clicking the **Start** button on the sim control panel. Notice that the trajectory assumes its predetermined path. -This is because we are giving the cannonball a position as a function of time. +This is because we are analytically calculating the cannonball position as a +function of time, rather than calculating it from the previous frame data. + #### TV With An Input File If this simulation were run over and over, it would be laborious to @@ -107,8 +109,8 @@ Again, we need to incorporate the TV input file into our ever expanding simulation input file. ```python -execfile("Modified_data/realtime.py") -execfile("Modified_data/cannon.dr") +exec(open("Modified_data/realtime.py").read()) +exec(open("Modified_data/cannon.dr").read()) trick.trick_view_add_auto_load_file("TV_cannon.tv") trick.stop(5.2) @@ -122,6 +124,4 @@ trick.stop(5.2) You may now run the sim and verify that TV pops up automatically. -Congratulations, you have finished the basic Trick tutorial! - [Next Page](ATutNumericSim) diff --git a/docs/tutorial/TutVariableServer.md b/docs/tutorial/TutVariableServer.md index 6e83e3dc..d46ac193 100644 --- a/docs/tutorial/TutVariableServer.md +++ b/docs/tutorial/TutVariableServer.md @@ -124,12 +124,13 @@ To run the variable server client : * Execute, but don't "Start" the cannonball simulation. * Find the variable server port number in the bottom left hand corner of the Sim Control Panel, as shown below. -* Execute the script with the port number as an argument. Example: - -```$ ~/CannonDisplay_Rev1.py 50774 &``` ![Cannon](images/SimControlPanel.png) +* Execute the script with the port number as an argument. + Example: ```$ ~/CannonDisplay_Rev1.py 50774 &``` +* "Start" the cannonball simulation. + The output of the script will display three columns of numbers. The left most number is the [variable server message type](#variable-server-message-types). Here, a message type of 0 indicates that the message is the (tab delimited) list @@ -147,7 +148,6 @@ that they were specified in the script. 0 68.84901960086293 27.34966950000001 0 73.17914661978513 28.24082950000001 - ``` @@ -179,7 +179,7 @@ and "dyn.cannon.pos[1]" to the session variable list. ⚠️ Please notice that the quotes around the variable names must be escaped with the '\' (backslash) character. -``` +```python client_socket.send( "trick.var_add(\"dyn.cannon.pos[0]\") \n" + "trick.var_add(\"dyn.cannon.pos[1]\") \n" ) @@ -260,7 +260,6 @@ Now, when we run the client, we get both the init_angle and the init_speed with 0 0 0 ``` - Another commonly used pattern to retrieve variables only once is to use the [**var_add**](#api-var-add), [**var_send**](#api-var-send), and [**var_clear**](#api-var-clear) commands. [**var_send**](#api-var-send) tells the variable server to send all **session** variables immediately regardless of whether [**var_pause**](#api-var-pause) @@ -277,8 +276,6 @@ print line client_socket.send( "trick.var_clear()\n" ) ``` - - In this snippet of code, we add ```dyn.cannon.init_angle``` to the session variable list. Then we call [**var_send**](#api-var-send) to tell the variable server to send us the value, and wait for the response by calling @@ -289,7 +286,9 @@ two ways. We can 1) call [**var_clear**](#api-var-clear) to clear the the list, or 2) we can call [**var_remove**](#api-var-remove). Specifically we could do the following: -```client_socket.send("trick.var_remove(\"dyn.cannon.init_angle\")\n")``` +```python +client_socket.send( "trick.var_remove(\"dyn.cannon.init_angle\")\n" ) +``` So, when we run the modified client, the first three lines of the output should look something like the following. @@ -302,7 +301,7 @@ look something like the following. 0 0 0 ``` -The first line contains the message type ( which is zero), followed by the value +The first line contains the message type (which is zero), followed by the value of ```dyn.cannon.init_angle```. Subsequent lines contain the position data like before. @@ -561,7 +560,6 @@ Add this to the bottom of RUN_test/input.py to give it a try. ### The Variable Server API -`` The following functions are a subset of variable server API functions that are used in this tutorial: diff --git a/docs/tutorial/images/SimMakeComplete.png b/docs/tutorial/images/SimMakeComplete.png deleted file mode 100644 index 232f3d5da987b1c6fe78919a327e1a3e89a67dd2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8644 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 diff --git a/docs/tutorial/images/TrickPaths.png b/docs/tutorial/images/TrickPaths.png deleted file mode 100644 index d920603b9e91a13e29c8a09567ea0e90102329e9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12214 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 PM^lsqekzy#`t5%KivmJK diff --git a/include/trick/DRHDF5.hh b/include/trick/DRHDF5.hh index a08fc28e..a241f20a 100644 --- a/include/trick/DRHDF5.hh +++ b/include/trick/DRHDF5.hh @@ -48,7 +48,7 @@ namespace Trick { /** The DRHDF5 recording format is an industry conforming HDF5 formatted file. Files written in this format are named - log_.hd5. The contents of this file type are readable by the Trick Data Products packages from + log_.h5. The contents of this file type are readable by the Trick Data Products packages from Trick 07 to the current version. The contents of the file are binary and is not included here. The HDF5 layout of the file follows. diff --git a/trick_sims/Cannon/SIM_cannon_analytic/S_define b/trick_sims/Cannon/SIM_cannon_analytic/S_define index 5c783c64..96151153 100644 --- a/trick_sims/Cannon/SIM_cannon_analytic/S_define +++ b/trick_sims/Cannon/SIM_cannon_analytic/S_define @@ -1,6 +1,6 @@ /************************TRICK HEADER************************* PURPOSE: - (This S_define works with the RUN_analytic input file) + (S_define file for SIM_cannon_analytic) LIBRARY DEPENDENCIES: ( (cannon/gravity/src/cannon_init.c)