├── .gitignore ├── Alarms.xml ├── Channels ├── Aliases.xml ├── Details.xml ├── Mappings.xml └── Overrides.xml ├── FileOpen.xml ├── Internal Maths.xml ├── LoggedDataOpen.xml ├── Maths ├── Aero.xml ├── Brakes.xml ├── Car - Sim ACC - General.xml ├── Car - Sim iRacing - Dallara P217.xml ├── Car - Sim iRacing - General.xml ├── Car - Sim iRacing - Porsche 919.xml ├── Conversions.xml ├── Dampers.xml ├── Driver.xml ├── Drivetrain.xml ├── Dynamics.xml ├── Grip Factors.xml ├── HYS.xml ├── Lap Info.xml ├── MoTeC.xml ├── Sim - ACC.xml ├── Sim - iRacing.xml ├── Suspension.xml ├── Tire Forces.xml ├── Tire Temp and Pressure.xml ├── Wheel Slip.xml └── __Template__.xml ├── README.md ├── RefLap.xml ├── Track Maps ├── Barcelona.mt2 ├── GTR GT3 18.mt2 ├── Hungaroring.mt2 ├── Huracan GT3.mt2 ├── Imola.mt2 ├── Kyalami.mt2 ├── Laguna Seca.mt2 ├── Laguna_Seca.mt2 ├── M6 GT3.mt2 ├── Paul_Ricard.mt2 ├── Silverstone.mt2 ├── Sonoma.mt2 ├── Spa.mt2 ├── Suzuka.mt2 ├── ThunderHill West.mt2 ├── ThunderHill.mt2 ├── Vehicle.mt2 ├── barcelona gp.mt2 ├── brands_hatch.mt2 ├── daytona 2011 road.mt2 ├── donington.mt2 ├── fuji gp.mt2 ├── imola gp.mt2 ├── misano.mt2 ├── monza.mt2 ├── mount_panorama.mt2 ├── nurburgring combined.mt2 ├── nurburgring combinedlong.mt2 ├── nurburgring gpnochicane.mt2 ├── nurburgring.mt2 ├── oulton_park.mt2 ├── roadatlanta full.mt2 ├── sebring international.mt2 ├── snetterton.mt2 ├── spa up.mt2 ├── suzuka grandprix.mt2 └── watkinsglen 2021 fullnoloop.mt2 ├── Workbooks ├── Brakes.i2wkb ├── Driver.i2wkb ├── Drivetrain.i2wkb ├── Notes.i2wkb ├── Reports.xml ├── Suspension.i2wkb ├── Tires.i2wkb └── Traction.i2wkb ├── Workspace.i2wsp └── img ├── HYS_regen.png ├── HYS_usage.png ├── oversteer.png ├── rake.png ├── ride_height.png ├── roll_rates.png ├── slip_angle.png ├── source_math_editor.png └── throttle_application.png /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # Motec data 4 | .backup 5 | Setup Sheets/Cache 6 | -------------------------------------------------------------------------------- /Alarms.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Channels/Aliases.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Channels/Details.xml: -------------------------------------------------------------------------------- 1 | 2 |
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | -------------------------------------------------------------------------------- /Channels/Mappings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Channels/Overrides.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /FileOpen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Internal Maths.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /LoggedDataOpen.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Maths/Aero.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Maths/Brakes.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 10 | 12 | 13 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | -------------------------------------------------------------------------------- /Maths/Car - Sim ACC - General.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Maths/Car - Sim iRacing - Dallara P217.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /Maths/Car - Sim iRacing - General.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Maths/Car - Sim iRacing - Porsche 919.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 8 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /Maths/Conversions.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Maths/Dampers.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Maths/Driver.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 21 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 35 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /Maths/Drivetrain.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 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 | 39 | 42 | 45 | 48 | 51 | 54 | 57 | 60 | 63 | 66 | 69 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /Maths/Dynamics.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Maths/Grip Factors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /Maths/HYS.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /Maths/Lap Info.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Maths/MoTeC.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Maths/Sim - ACC.xml: -------------------------------------------------------------------------------- 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 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | -------------------------------------------------------------------------------- /Maths/Sim - iRacing.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 26 | 28 | 29 | 30 | 32 | 34 | 35 | 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 | 63 | 64 | 65 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 77 | 79 | 81 | 82 | 83 | 84 | 85 | 86 | 88 | 90 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 167 | 168 | 170 | 172 | 173 | 174 | 175 | -------------------------------------------------------------------------------- /Maths/Suspension.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /Maths/Tire Forces.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Maths/Tire Temp and Pressure.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Maths/Wheel Slip.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 13 | 15 | 17 | 18 | 19 | 20 | 21 | 23 | 25 | 27 | 28 | 29 | 30 | 31 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | -------------------------------------------------------------------------------- /Maths/__Template__.xml: -------------------------------------------------------------------------------- 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 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SDMotecWorkspace 2 | 3 | This is a MoTeC workspace configured to accept multiple data sources and provide an assortment of calculations for vehicle dynamics and performance. 4 | 5 | ## Setup Instructions 6 | 7 | 1. Make sure you have [MoTeC i2 Pro](https://www.motec.com.au/i2/i2downloads/) installed 8 | 1. Go to the [Releases page](https://github.com/stevendaniluk/SDMotecWorkspace/releases) and download the ZIP file for the latest release (or if you are familiar with git, do your thing) 9 | 1. Unzip the downloaded file, and change the name removing the version number that gets appended because MoTeC can't handle "." characters (e.g. change it to *SDMotecWorkspace*) 10 | 1. Open MoTeC, go *File-->Workspace-->Open Workspace*, then select *Import*, navigate to the downloaded folder and select the *Workspace* file inside, this will import it into MoTeC for future use 11 | 1. Select the *SDMotecWorkspace* workspace, then *OK* to open the workspace 12 | 1. Navigate to the *Notes* workbook for further instructions 13 | 14 | *Note: If using iRacing you will also need to install [Mu Telementry Exporter](https://github.com/patrickmoore/Mu) to generate MoTeC log files.* 15 | 16 | ## Features 17 | 18 | ### Support For Multiple Data Sources 19 | 20 | The workspace is setup so that data can be easily analyzed from different sources (i.e. vehicles, simulators) without having to use different workspces. Meaning all the same calulcations and plots can be reused, and data is always available with the same units, colours, and coordinate conventions. 21 | 22 | Source specific conversions are enabled/disabled by checking/unchecking the corresponding maths file in the *Maths Editor* (Ctrl + M). There are more instructions and details in the *Notes* workbook. 23 | 24 | You can easily add your own car or simulator from the provided template file. This currently includes math files for the ACC and iRacing simulators. 25 | 26 | ![Source Math Editor](img/source_math_editor.png) 27 | 28 | ### Calculations 29 | 30 | A non exhaustive list of calculations: 31 | * Driver Input: 32 | * Throttle application and release rate (instantaneous and lap average) 33 | * Brake application and release rate (instantaneous and lap average) 34 | * Steering rate (instantaneous and lap average) 35 | * Dynamics: 36 | * Oversteer angle 37 | * Wheel angle and curvature from driver input and estimated from vehicle motion 38 | * Total acceleration during various phases (braking, cornering, aero dominated) 39 | * Tire slip angle (all corners, accounting for steering input and toe angles) 40 | * Tire longitudnal slip 41 | * Actively loaded tire durations 42 | * Suspension: 43 | * Damper velocity histograms 44 | * Ride height 45 | * Rake angle 46 | * Front and rear roll angles 47 | * Front and rear roll gradients 48 | * Roll ratio (instantaneous and lap average) 49 | * Tires, Brakes, and Drivetrain: 50 | * Change in temperature and pressure over a lap and stint 51 | * Tire temperature bias 52 | * Tire pressure bias 53 | * Brake temperature rates 54 | * Brake temperature bias (front/rear) 55 | * Gear usage 56 | * Fuel consumption rate 57 | * Hybrid System: 58 | * Battery charge percentage (instantaneous and lap average) 59 | * Battery usage and charge rates 60 | * Power deployed and recovered 61 | * Braking regeneration efficienty 62 | * Conditions: 63 | * Active gear 64 | * Cornering, not cornering 65 | * Braking, WOT, half WOT, etc 66 | 67 | Below are some sample images from various worksheets. 68 | 69 | Oversteer during a lap and a track map showing the areas most prone to understeer/oversteer, and how the oversteer evolves over an entire stint. 70 | ![Oversteer](img/oversteer.png) 71 | 72 | Tire slip angle and its relationship with lateral tire force to determine when you are getting the most out of the tires. 73 | ![Slip Angle](img/slip_angle.png) 74 | 75 | Damper position data can be used to extract the ride heights, rake angle, and roll angle. Roll rates are a vaulable metric for assessing vehicle balance. 76 | ![Ride Height](img/ride_height.png) 77 | ![Rake](img/rake.png) 78 | ![Roll Rates](img/roll_rates.png) 79 | 80 | Hybrid system energy usage and regeneration efficiency. You can monitor how the hybrid system battery level changes over a lap, over the race, and how the charge rate changes as a function of braking input. 81 | ![HYS Usage](img/HYS_usage.png) 82 | ![HYS Regen](img/HYS_regen.png) 83 | 84 | ## Version History 85 | * **1.4.0** 86 | * Revise various plots and calculations for clarity. Few extra channels added to the maths template. Miscellaneous bug fixes. 87 | * **1.3.0** 88 | * Assorted changes for naming and units of engine and setup variables. Adds more detailed tire temperature bands. Miscellaneous bug fixes. 89 | * **1.2.0** 90 | * Additional lap timing calculations, plus fixes for a few calculations 91 | * **1.1.0** 92 | * Minor update with a few additional channels, calculations, bug fixes, and additional track and vehicle info. 93 | * **1.0.0** 94 | * Initial version. Has support for ACC and iRacing outputs, general purpose cars for ACC and iRacing, and some sample cars from iRacing. 95 | -------------------------------------------------------------------------------- /RefLap.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Track Maps/Barcelona.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Barcelona.mt2 -------------------------------------------------------------------------------- /Track Maps/GTR GT3 18.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/GTR GT3 18.mt2 -------------------------------------------------------------------------------- /Track Maps/Hungaroring.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Hungaroring.mt2 -------------------------------------------------------------------------------- /Track Maps/Huracan GT3.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Huracan GT3.mt2 -------------------------------------------------------------------------------- /Track Maps/Imola.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Imola.mt2 -------------------------------------------------------------------------------- /Track Maps/Kyalami.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Kyalami.mt2 -------------------------------------------------------------------------------- /Track Maps/Laguna Seca.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Laguna Seca.mt2 -------------------------------------------------------------------------------- /Track Maps/Laguna_Seca.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Laguna_Seca.mt2 -------------------------------------------------------------------------------- /Track Maps/M6 GT3.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/M6 GT3.mt2 -------------------------------------------------------------------------------- /Track Maps/Paul_Ricard.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Paul_Ricard.mt2 -------------------------------------------------------------------------------- /Track Maps/Silverstone.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Silverstone.mt2 -------------------------------------------------------------------------------- /Track Maps/Sonoma.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Sonoma.mt2 -------------------------------------------------------------------------------- /Track Maps/Spa.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Spa.mt2 -------------------------------------------------------------------------------- /Track Maps/Suzuka.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Suzuka.mt2 -------------------------------------------------------------------------------- /Track Maps/ThunderHill West.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/ThunderHill West.mt2 -------------------------------------------------------------------------------- /Track Maps/ThunderHill.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/ThunderHill.mt2 -------------------------------------------------------------------------------- /Track Maps/Vehicle.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/Vehicle.mt2 -------------------------------------------------------------------------------- /Track Maps/barcelona gp.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/barcelona gp.mt2 -------------------------------------------------------------------------------- /Track Maps/brands_hatch.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/brands_hatch.mt2 -------------------------------------------------------------------------------- /Track Maps/daytona 2011 road.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/daytona 2011 road.mt2 -------------------------------------------------------------------------------- /Track Maps/donington.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/donington.mt2 -------------------------------------------------------------------------------- /Track Maps/fuji gp.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/fuji gp.mt2 -------------------------------------------------------------------------------- /Track Maps/imola gp.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/imola gp.mt2 -------------------------------------------------------------------------------- /Track Maps/misano.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/misano.mt2 -------------------------------------------------------------------------------- /Track Maps/monza.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/monza.mt2 -------------------------------------------------------------------------------- /Track Maps/mount_panorama.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/mount_panorama.mt2 -------------------------------------------------------------------------------- /Track Maps/nurburgring combined.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/nurburgring combined.mt2 -------------------------------------------------------------------------------- /Track Maps/nurburgring combinedlong.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/nurburgring combinedlong.mt2 -------------------------------------------------------------------------------- /Track Maps/nurburgring gpnochicane.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/nurburgring gpnochicane.mt2 -------------------------------------------------------------------------------- /Track Maps/nurburgring.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/nurburgring.mt2 -------------------------------------------------------------------------------- /Track Maps/oulton_park.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/oulton_park.mt2 -------------------------------------------------------------------------------- /Track Maps/roadatlanta full.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/roadatlanta full.mt2 -------------------------------------------------------------------------------- /Track Maps/sebring international.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/sebring international.mt2 -------------------------------------------------------------------------------- /Track Maps/snetterton.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/snetterton.mt2 -------------------------------------------------------------------------------- /Track Maps/spa up.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/spa up.mt2 -------------------------------------------------------------------------------- /Track Maps/suzuka grandprix.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/suzuka grandprix.mt2 -------------------------------------------------------------------------------- /Track Maps/watkinsglen 2021 fullnoloop.mt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/Track Maps/watkinsglen 2021 fullnoloop.mt2 -------------------------------------------------------------------------------- /Workbooks/Brakes.i2wkb: -------------------------------------------------------------------------------- 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 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | 317 | 318 | 319 | 320 | 321 | 322 | 323 | 324 | 325 | 326 | 327 | 328 | 329 | 330 | 331 | 332 | 333 | 334 | 335 | 336 | 337 | 338 | 339 | 340 | 341 | 342 | 343 | 344 | 345 | 346 | 347 | 348 | 349 | 350 | 351 | 352 | 353 | 354 | 355 | 356 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 389 | 390 | 391 | 392 | 393 | 394 | 395 | 396 | 397 | 398 | 399 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 418 | 419 | 420 | 421 | 422 | 423 | 424 | 425 | 426 | 427 | 428 | 429 | 430 | 431 | 432 | 433 | 434 | 435 | 436 | 437 | 438 | 439 | 440 | 441 | 442 | 443 | 444 | 445 | 446 | 447 | 448 | 449 | 450 | 451 | 452 | 453 | 454 | 455 | 456 | 457 | 458 | 459 | 460 | 461 | 462 | -------------------------------------------------------------------------------- /Workbooks/Notes.i2wkb: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Workbooks/Reports.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /Workspace.i2wsp: -------------------------------------------------------------------------------- 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 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | -------------------------------------------------------------------------------- /img/HYS_regen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/HYS_regen.png -------------------------------------------------------------------------------- /img/HYS_usage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/HYS_usage.png -------------------------------------------------------------------------------- /img/oversteer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/oversteer.png -------------------------------------------------------------------------------- /img/rake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/rake.png -------------------------------------------------------------------------------- /img/ride_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/ride_height.png -------------------------------------------------------------------------------- /img/roll_rates.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/roll_rates.png -------------------------------------------------------------------------------- /img/slip_angle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/slip_angle.png -------------------------------------------------------------------------------- /img/source_math_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/source_math_editor.png -------------------------------------------------------------------------------- /img/throttle_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stevendaniluk/SDMotecWorkspace/9f260f8b8336fb04a40219ddd900f69a8c4e5a31/img/throttle_application.png --------------------------------------------------------------------------------