14 Pages

userdoc

Course: MGST 1354, Fall 2009
School: Washington University...
Rating:
 
 
 
 
 

Word Count: 1843

Document Preview

= PDS_VERSION_ID PDS3 RECORD_TYPE = STREAM OBJECT = TEXT PUBLICATION_DATE = 2002-01-01 NOTE = "User documentation for vanilla software." END_OBJECT = TEXT END Vanilla User Guide 1.0 Introduction The vanilla program is a command line program that reads the binary...

Register Now

Unformatted Document Excerpt

Coursehero >> Missouri >> Washington University in St. Louis >> MGST 1354

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
= PDS_VERSION_ID PDS3 RECORD_TYPE = STREAM OBJECT = TEXT PUBLICATION_DATE = 2002-01-01 NOTE = "User documentation for vanilla software." END_OBJECT = TEXT END Vanilla User Guide 1.0 Introduction The vanilla program is a command line program that reads the binary TES TSDR file format, correlates data between the various tables, and outputs the data as columns of ASCII values. Vanilla can also search the data for records that match a user specified criteria. Vanilla uses a dataset.lst file to identify the data files it is to work with, and treats those files as a set of tables constituting a relational database. Each table contains several columns of data, and records are related from table to table by having the same values in key columns. 2.0 Usage The usage for vanilla is: vanilla directory -fields "col1 col2 ..." -select "select1 select2 ..." The meaning of each of the arguments is explained below. directory This argument is required and must be the absolute or relative path to a directory containing a dataset.lst file. -fields "col1 col2 ..." This argument is required and identifies the table columns to output. The list of columns must be presented as a single string, and so, must be enclosed in quotes if more than one column is given. A brief list of the column names are given in Appendix A.1 below; detailed information for each column, including a complete description, can be found in the TES TSDR Data Archive SIS, or in the individual .fmt files located with the data. The format of a column identifier is: table.column[index] Where the 'table' and '[index]' portions are optional. Column identifiers are separated by spaces, so no spaces are allowed within a column identifier. The table prefix is only necessary when multiple tables contain columns with the same name (such as key columns). If the table prefix is not specified, the first table listed in the dataset.lst file that contains the named column is assumed. It is possible for some columns in PDS tables to be specified as containing an array of homogeneous data elements. For these array columns, the optional [index] is used to specifies which element(s) of the array to extract. The index can be a single number, indicating a single element of the array, or a range of numbers (specified by [low:high]), indicating multiple consecutive elements. If the user specifies the name of an array column and does not specify an index or leaves it blank (eg: column[]), the entire array is output. Some columns are composed of multiple bit fields. If only the bit column is specified, the entire "bit word" is output as an integer number; in most cases, this is probably not desirable. To extract a single bit field, the column should be specified by column:bit_column. All variable length arrays require at least an empty index (ie: name[]). Leaving off the index extracts the variable length data pointer, (the position of the variable length data in its file). If columns from multiple tables are specified, an inner join is performed between all the tables involved and only those records that exist in all of the tables specified are output. -select "select1 select2 ..." This argument is optional and specifies a selection criteria that a record must meet before it is output. Like the -fields argument, all the selection criteria must be presented to vanilla as a single string and so must be enclosed in quotes. The format for a selection is as follows: table.column[index] lowvalue highvalue Like the -fields options, the 'table' and '[index]' portions are optional and carry the same meaning, however with or without the '[index]' portion, the column identifier must specify only a single data element (e.g: the [low:high] format for index is not allowed, and omitting the index is not allowed for arrays). The low_value and high_value portions of the selection specify a range that the column value must lie within before a record is output. Records that don't meet all the selection criteria discarded. The ranges are inclusive; a value must satisfy the following relation for the record to be considered for output: lowvalue <= column value <= highvalue If a column is specified multiple times, the selection criteria are evaluated as an "OR" compound expression which returns records that meet either of the selection criteria. If the column contains a character value, the comparison is lexigraphical. 3.0 Examples The following command extracts the derived target temperature for each detector, with the latitude and longitude at the center of the detector: vanilla . -fields "target_temperature detector latitude longitude" The '.' means the current directory. To perform the same search but limit the output to those observations with a phase angle of less than 45 degrees, and within +/- 20 degrees of Isidis Planitia (lon 270, lat 15): vanilla . -fields "target_temperature detector latitude longitude" \ -select "phase_angle 0 45 longitude 250 290 latitude -5 35" The TES spectra are stored in an array. You can extract a portion of the array or the whole thing by using the range operator [low:hi] after the field name. The following command extracts all the spectra in the area around Isidis Major, where the target temperature was above 240 degrees Kelvin: vanilla . -fields "detector latitude longitude calibrated_radiance[]" \ -select "target_temperature 240 999 longitude 250 290 latitude -5 35" The [] are necessary for fields that are variable length arrays. Otherwise you get a single value, a pointer to the array, which is probably not what you want. The following command also searches for spectra around Isidis Major, but limits the output to spectra collected either by detector 2 or 5: vanilla . -fields "detector latitude longitude calibrated_radiance[]" \ -select "detector 2 2 detector 5 5 target_temperature 240 999 \ longitude 250 290 latitude -5 35" Another option in searching for spectra around Isidis Major, is to limit the output with quality parameters; the following command extracts only those observations collected when the solar panels were not moving (quality code value=1): vanilla . -fields "detector latitude longitude calibrated_radiance[]" \ -select "target_temperature 240 999 longitude 250 290 \ latitude -5 35 quality:solar_panel_motion 1 1" 4.0 System Specifics A version of vanilla has been developed for use under Windows 95/98. It is run from the command line of a MS-DOS window. The default MS-DOS command line is only 127 characters, so entering long vanilla commands may be difficult. There are 2 methods that will allow you to enter longer commands: 1) Enter the command into a .BAT file and run the file. 2) Modify the parameters on your MS-DOS prompt window to run the command.com with the parameter /u:250. To do this under windows '95, right click on the title bar of a MS-DOS prompt, and select Parameters from the menu. Add /u:250 to the end of the "Cmd line" box and click on OK. Close and restart the MS-DOS window. A. Appendix A.1 Column Name Table Column Name FMT File AEROSOL_OPACITY_PROFILE_LIMB LMB.FMT AEROSOL_OPACITY_SPECTRUM_LIMB LMB.FMT AEROSOL_SNG_SCAT_ALB_SPECTRUM LMB.FMT AEROSOL_SNG_SCAT_PRES_LEVEL_IND LMB.FMT ATMOSPHERIC_CALIBRATION_ID ATM.FMT AUXILIARY_DIAGNOSTIC_TEMPS BOLOMETRIC_BRIGHTNESS_TEMP TLM.FMT BOL.FMT BOLOMETRIC_THERMAL_INERTIA BOL.FMT CALIBRATED_RADIANCE RAD.FMT CALIBRATED_VISUAL_BOLOMETER BOL.FMT CO2_DOWNWELLING_FLUX ATM.FMT CO2_CONTINUUM_TEMP ATM.FMT COMPRESSION_MODE RAD.FMT DATA_PACKET_TYPE OBS.FMT DETECTOR_MASK OBS.FMT DETECTOR_NUMBER BOL.FMT DETECTOR_NUMBER CMP.FMT DETECTOR_NUMBER GEO.FMT DETECTOR_NUMBER IFG.FMT DETECTOR_NUMBER RAD.FMT DETECTOR_TEMPERATURE RAD.FMT DIAGNOSTIC_TELEMETRY_1 TLM.FMT DIAGNOSTIC_TELEMETRY_2 TLM.FMT DIAGNOSTIC_TELEMETRY_3 TLM.FMT DIAGNOSTIC_TELEMETRY_4 TLM.FMT DIAGNOSTIC_TELEMETRY_5 TLM.FMT DIAGNOSTIC_TELEMETRY_6 TLM.FMT DIAGNOSTIC_TELEMETRY_7 TLM.FMT DIAGNOSTIC_TELEMETRY_8 TLM.FMT DIAGNOSTIC_TELEMETRY_9 TLM.FMT DIAGNOSTIC_TELEMETRY_10 TLM.FMT DIAGNOSTIC_TELEMETRY_11 TLM.FMT DIAGNOSTIC_TELEMETRY_12 TLM.FMT DIAGNOSTIC_TELEMETRY_13 TLM.FMT DIAGNOSTIC_TELEMETRY_14 TLM.FMT DIAGNOSTIC_TELEMETRY_15 TLM.FMT DIAGNOSTIC_TELEMETRY_16 TLM.FMT DIAGNOSTIC_TELEMETRY_17 TLM.FMT DIAGNOSTIC_TELEMETRY_18 TLM.FMT DIAGNOSTIC_TELEMETRY_19 TLM.FMT DIAGNOSTIC_TELEMETRY_20 TLM.FMT EMISSION_ANGLE GEO.FMT EMISSIVITY (virtual) EPHEMERIS_TIME POS.FMT FFT_COMPLEX_DATA CMP.FMT FFT_START_INDEX OBS.FMT GEOMETRY_CALIBRATION_ID GEO.FMT IMC_COUNT OBS.FMT INCIDENCE_ANGLE GEO.FMT INSTRUMENT_TIME_COUNT OBS.FMT INTERFEROGRAM_DATA IFG.FMT INTERFEROGRAM_END TLM.FMT INTERFEROGRAM_MAXIMUM TLM.FMT INTERFEROGRAM_MINIMUM TLM.FMT INTERFEROGRAM_ZPD TLM.FMT IRTM (virtual) LAMBERT_ALBEDO BOL.FMT LATITUDE GEO.FMT LIMB_PARAMETERS_QUALITY LMB.FMT LIMB_TEMPERATURE_PROFILE LMB.FMT LOCAL_TIME GEO.FMT LONGITUDE GEO.FMT MIRROR_POINTING_ANGLE OBS.FMT NADIR_OPACITY ATM.FMT NADIR_OPACITY_RESIDUAL ATM.FMT NADIR_TEMPERATURE_PROFILE ATM.FMT NEON_AMPLITUDE TLM.FMT NEON_GAIN TLM.FMT NEON_LAMP TLM.FMT NEON_ZPD TLM.FMT OBSERVATION_CLASSIFICATION OBS.FMT OBSERVATION_CLASSIFICATION:CLASSIFICATION_VALUE OBS.FMT OBSERVATION_CLASSIFICATION:INTENDED_TARGET OBS.FMT OBSERVATION_CLASSIFICATION:MISSION_PHASE OBS.FMT OBSERVATION_CLASSIFICATION:NEON_LAMP_STATUS OBS.FMT OBSERVATION_CLASSIFICATION:SPARE OBS.FMT OBSERVATION_CLASSIFICATION:TES_SEQUENCE OBS.FMT OBSERVATION_CLASSIFICATION:TIMING_ACCURACY OBS.FMT OBSERVATION_TYPE OBS.FMT ONBOARD_PROCESSING_EVENT_LOG TLM.FMT ORBIT_COUNTER_KEEPER OBS.FMT ORBIT_NUMBER OBS.FMT PHASE_ANGLE GEO.FMT PLANETARY_ANGULAR_RADIUS GEO.FMT PLANETARY_PHASE_ANGLE GEO.FMT POSITION_SOURCE_ID POS.FMT PREPROCESSOR_DETECTOR_NUMBER OBS.FMT PRIMARY_DIAGNOSTIC_TEMPERATURES OBS.FMT QUALITY BOL.FMT QUALITY OBS.FMT QUALITY RAD.FMT QUALITY:ALGOR_PATCH OBS.FMT QUALITY:ALGOR_RISK ...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

Washington University in St. Louis - MGST - 1354
PDS_VERSION_ID = PDS3RECORD_TYPE = STREAMOBJECT = TEXT PUBLICATION_DATE = 2002-01-01 NOTE = &quot;Description of the SRC directory contents
North-West Uni. - PROJECT - 820
Brian did everything.
North-West Uni. - PROJ - 820
Brian Bockrath - toad. Jeremy Kanter - fork. Simon Stahl - penguin.
North-West Uni. - PROJ - 820
Group 1 Cannon,Kevin Furry,Eric Meccia,Nick Kevin did MarioEric did the hamburgerNick did the spoon
North-West Uni. - PROJ - 820
Group 4 READMECandice Tse - 3 versions of robot (polka dots, photorealistic, effect), effect scene.Kanjana Rajaratnam - 3 versions of camera, polka dot scene.John Nickels - 3 versions of tanqueray bottle, photorealistic scene.Each person did th
North-West Uni. - PROJECT - 820
Simon Stahl did everything. The tiffs are different from the animation because I did them first and had to rework the file since then.
North-West Uni. - PROJECT - 820
Group AmandaMembers: AmandaAmanda did the modeling, texturing, and lighting of everything in the scenes. The hero and mood scenes are set in a desert. The art scene is set in a nightclub. Texture for the skin on the head and themetal cup are fr
North-West Uni. - PROJECT - 820
Hi, its awfully early Amy! :)-Furry, Eric-Meechai, Dian S.We both worked on lighting and composition. While the penguins were original models, the whale model was a free model by author Debra Ross. This composition incorporated the technique
North-West Uni. - PROJECT - 820
Group Members:Jeremy KanterXin QuKanjana RajaratnamThe penguin standing on the iceberg is angry at the approaching submarine. The submarine was sent by The Beatles, but the penguin likes jazz.The mood lighting is meant to simulate a sunset.T
North-West Uni. - PROJECT - 820
Team Member: Jimmy WuHero+Mood+art : Jimmy Wuthe art scene, i put a light in the hand of the skeleton body.the Original photo was captured online. the &quot;David&quot; status, florence, italyhere is the original photo:
North-West Uni. - PROJECT - 820
Who did what:Chris - Scene Modeling (with exception of Optimus Prime) + Mood LightingJohn - Hero Lighting
North-West Uni. - PROJECT - 820
&quot;True West&quot; scenes modeled, shaded, and lit by Kevin Cannon.
North-West Uni. - PROJECT - 820
Matt PullinJuly 11 2004Files:MP_ReadMe.txtMP_Standard.tif : Scene with normal, default lightingMP_Hero.tif : Scene with hero lightingMP_Mood.tif : Scene with mood lightingNote:Sewer background jpeg comes from Final Fantasy 8 and is property
North-West Uni. - PROJECT - 820
group NICK readmeGroup Members:Nick MecciaModeler:Nick MecciaPhotoshopper:Nick MecciaTexturizer:Nick MecciaLighter:Nick MecciaPS: The &quot;Art&quot; style is supposed to be at night (notice the blue lighting like you said).
North-West Uni. - PROJECT - 820
Simon did everything; made the model, textured it, and did the lighting.The background is from digitalblasphemy.com.
North-West Uni. - PROJ - 820
Dian Meechai - Penguins, FloorChristopher Ostertag - Table, TrayXin Qu - Bottle, Martini, StoolThe scene depicts a penguin dining at a restaurant. A waiter meanwhile trips and the contents of the bottle he is carrying shall soon spill over the
North-West Uni. - PROJ - 820
project 2 group 5what we did individually:MP did 3 versions of marioAmanda did 3 versions of a cupJimmy did the toad getting apples scene, with all different versions of apples in the same scenewhat we did as a team:Jimmy did the skeleto
Penn State - MDM - 392
Factors To Include in Your Time Plan - There are some basic factors that all schedules need in order for them to be realistic and effective: 1. PRIORITIZE. Write down all your tasks. Sort them into three groups: 1's, 2's, and 3's. The 1's are essenti
Penn State - MKTG - 572
1995 7888 4320 000 000001 00023Copyright 2003 by The McGrawHill Companies, Inc. All rights reserved. C H A P T E R1995 7888 4320 000 000001 0002314Questionnaire Design and Issues1234 0001 897251 0000014-2Copyright 2003 by The McGraw
Cornell - ENGL - 350
A Study of the Biomechanics of Spondylolysisprepared for Penny Beebe Engineering Communications Program Donald Bartel Sibley School of Mechanical Engineering by Nikki Graf Sibley School of Mechanical Engineering 12 December, 2002Copyright 2002 Nik
Cornell - ENGL - 350
LEAN PRODUCTION IN A WORLD OF UNCERTAINTY: IMPLICATIONS OF VARIABLE DEMANDPrepared forJerry Gabriel Instructor, Engineering Communications Program Jack Muckstadt Professor, School of Operations Research &amp; Industrial EngineeringPrepared byDian
Cornell - CS - 280
CS 280 Solution Set Homework 7by Shaddin Doghmi1(a).300 Bernoulli Trials. Probability of success p=1/6. We know that E (# of successes)=E(Y6)=np (see book p.277) E(Y6) = np = 3001/6 = 501(b).V(Y6)=npq (see book p.282) =3001/65/6=125/31(c).
U. Houston - CS - 4330
CHAPTER X PROTECTION AND SECURITY10.1 INTRODUCTION Main problem is to control access to resources (accounts, files and so forth). Users trying to access the resources are called principals. There are two complementary techniques: a) Access control
Embry-Riddle FL/AZ - PS - 104
PS 104 exam 3 equation sheet Force: The force on a charge is equal to the magnitude of that charge multiplied by the strength of the field at its position:F = qEElectric Potential Energy The EPE of a charge is equal to the magnitude of that charg
Embry-Riddle FL/AZ - PS - 104
Embry-Riddle FL/AZ - PS - 104
Washington - CHEM - 347
CHEMISTRY 347 HONORS ORGANIC CHEMISTRY LABORATORY Spring 2002Instructor:Professor Paul B. Hopkins Office: Bagley 109H Phone: 206/543-1613; email: chair@chem.washington.edu Office Hours: Tuesday 1:00-2:00 or by appt. Heather Clary Phone: 206/616-4
Cornell - CS - 402
CIS 402: Problem Set 3Directions for SubmissionE-mail your answers to me at ajp9@cornell.edu. The subject of your message should be &quot;CIS402 PS3,&quot; and the body of the message should contain your answers. Some mailers can format messages using HTML o
Cornell - CS - 402
CS 402: Scientific Visualization with MATLABAndrew Pershing 3134 Snee Hall ajp9@cornell.edu 255-5552Outline Course Description Details Policies Intro to CIS Tools Curriculum Role of Visualization in Science and Engineering Basic ConceptsC
S.E. Louisiana - ETEC - 620
I believe that children are the most important factor in education, becausethey are our future. I believe that as a teacher, I must provide my students with the most motivational and educational experiences. I also believe that education is multi-sen
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_01.ps %CreationDate: 06/23/2005 00:49:32 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_02.ps %CreationDate: 06/23/2005 00:49:31 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_03.ps %CreationDate: 06/23/2005 00:49:31 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_04.ps %CreationDate: 06/23/2005 00:49:30 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_05.ps %CreationDate: 06/23/2005 00:49:30 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
Wisconsin - SH - 050622
Wisconsin - SH - 050622
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_10.ps %CreationDate: 06/23/2005 00:49:26 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_12.ps %CreationDate: 06/23/2005 00:49:25 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_13.ps %CreationDate: 06/23/2005 00:49:25 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_14.ps %CreationDate: 06/23/2005 00:49:24 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
%!PS-Adobe-2.0 %Creator: MATLAB, The Mathworks, Inc. %Title: 050622_15.ps %CreationDate: 06/23/2005 00:49:24 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %Extensions: CMYK %Pages: (atend) %BoundingBox: (atend) %En
Wisconsin - SH - 050622
Wisconsin - SH - 050622
Wisconsin - SH - 050622
Aircraft Roll Angle sh050622 20 Roll (degrees) 10 0 -10 -20 18:20:22 15 Aircraft Pitch (degrees) 10 5 0 -5 -10 -15 18:20:22 250 200 Speed (m/s) 150 100 50 0 18:20:22 2 Altitude (meters) 1.5 1 0.5 x 10419:21:5520:23:2821:25:0222:26:3523:28:
Wisconsin - SH - 050622
%!PS-Adobe-3.0 %Creator: MATLAB, The Mathworks, Inc. %Title: sh050622_tilt01.ps %CreationDate: 06/23/2005 00:53:02 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %LanguageLevel: 2 %Pages: (atend) %BoundingBox: (aten
Wisconsin - SH - 050622
1000DA Tilt Error Angle Power Spectrum Number of samples averaged: 10; flight date: 050622 Y X 18:22:255000 10000200400600800100012001400160018002000 Y X 19:18:155000 100002004006008001000120014001600
Wisconsin - SH - 050622
%!PS-Adobe-3.0 %Creator: MATLAB, The Mathworks, Inc. %Title: sh050622_tilt02.ps %CreationDate: 06/23/2005 00:53:02 %DocumentNeededFonts: Helvetica %DocumentProcessColors: Cyan Magenta Yellow Black %LanguageLevel: 2 %Pages: (atend) %BoundingBox: (aten
Wisconsin - SH - 050622
20000 10000Tilt Power (binned by frequency) vs Time sh050622 sum( 2 - 50 Hz) sum( 51 - 99 Hz) sum( 100 - 148 Hz) sum( 149 - 197 Hz) sum( 198 - 246 Hz)100018:22:2519:19:4920:17:1321:14:3822:12:0223:09:26250 200 Speed (m/s) 150 100 50