5 Pages

AssignNo1_02

Course: ROY 2, Fall 2009
School: Skidmore
Rating:
 
 
 
 
 

Word Count: 1747

Document Preview

Wednesday Biomodel'02 Due 11th Biomodeling - Model Set #1 Constructing A New Model From Scratch I. Setting up to work A) A new Master Model to work on Always make a new MasterModel folder each time before beginning to work on a new model. To do so -> select the MasterModel folder (at the desktop level) -> from Edit, Copy it (CTRL-C) -> from Edit, Paste it (CTRL-V) -> rename the new...

Register Now

Unformatted Document Excerpt

Coursehero >> New York >> Skidmore >> ROY 2

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.
Wednesday Biomodel'02 Due 11th Biomodeling - Model Set #1 Constructing A New Model From Scratch I. Setting up to work A) A new Master Model to work on Always make a new MasterModel folder each time before beginning to work on a new model. To do so -> select the MasterModel folder (at the desktop level) -> from Edit, Copy it (CTRL-C) -> from Edit, Paste it (CTRL-V) -> rename the new folder ExpPopGrow1.1 You now have a new MasterModel folder copy to work on. B) Opening a template model -> Open your new folder and then start the shell model "MasterModel" inside it. [remember, always work with the project file] C) Saving a Copy To Work On To save a copy of the 'new' model you are about to work on, do the following: -> select Save Project As.. from the File menu, backspace (<delete>), type in a new file name (e.g. ExpPopGrow1.1) and Save this as the current working version of this model to your disk. Remember, it is a wise practice to re-Save to disk frequently to protect yourself against accidental loss of your hard work in the event of a network or machine crash. D] Grab more screen real estate for your model Code window. 1) Shrink the Project and Properties windows Move the mouse pointer to the right until it contacts the right- hand windows and turns into a double headed arrow. Push the arrow half way to the right shrinking the right hand windows and expanding space for the model list. 2) Grab the lower right hand window tab (45 degree lines) of the code window and pull it down and to the right to expand it. (this gives you more editing space) -> Scroll down through it until you reach the portion that reads '***********************Run Model************************* Do While T < 50 N=K*T T = T + dT X1 = T: Y1 = N: StyleType = 0: PlotPoint Loop '********************************************************* Look around this section, focusing especially on the model itself . Aways work at getting a feeling for the flow of logic! This is a simple model that contains the basic (no pun) structure you need to fit your own analytical models into. Sometimes you merely have to replace one or two lines to get a substatially new model. You will be working with this or similar 'starter' models extensively. You essentially construct new models by Editing older previously written ones. BioMod'02 assign.#1 page 1 ver. September 2, 2002 E) Try it out (a review of the previous session) -> From Run pick Start (F5) -> Click through Continue, Graph and Run model. The model runs once through until finished. To avoid labeling and printing, pick Exit. You are now back in "idle" in BASIC looking at the model List in the Code window. II. A new population growth model Recall that the 'final' version of this model of population growth that you arrived at last time was N = K * T + N0 If necessary re-edit this model as you did last time so that it a) contains the above equation and 2) assigns a value to the initial population of N0 = 10. Recall that this model was not very realistic. As you know, population growth is classically exponential rather than straight line in nature. We will now replace the old model with an exponential one. -> Edit the equation so that it is replaced with the following exponential model: Keen eq. 1.6 N = N 0eKt In BASIC, e is handled (and the above relationship is written) as follows: N = N0 * EXP(K * T) (be careful of letter case and zero/letter 'O' errors!) Notice that the "*" is used for multiplication and EXP( ) means "e to the K times T power". You now have a new model of population growth, an exponential one. As an aside, powers of a function, say X 2, are handled by the ^ symbol. Thus, Y = X2, in BASIC, is Y = X^2. We now have to assign appropriate initial values for the terms in the equation. Find the "Assign Constants" section and Assign constants as follows: N0 = 2 'initial bacteria/ml K = 0.1 'per hour T=0 'hours (note: any item followed by an apostrophe (e.g. ') is taken by BASIC as a comment (REM) rather than an instruction to execute. Thus, we can leave an explanatory comment note next to our N0=2 assignment by typing <tab>, then ', then whatever we wish to say (e.g.initial bacteria/ml)) Check graph labels [Label graph..] to make sure they read: Xlabel = "Time (hrs)" Ylabel = "Bacteria/ml" Edit the labels if necessary. Check graph maxima and minima and change them to: xMax = 50 'Show 50 hours xMin = 0 'low end of x axis on graph yMax = 50 'set Y top at 50 bacteria/ml yMin = 0 BioMod'02 assign.#1 page 2 ver. September 2, 2002 This sequence of four steps indicated by the hand ( ) is one you will always perform when constructing a graphic output model in BASIC. -> Run the model; viola, exponential growth (don't label or print yet). -> Finally, personalize the List by editing the line near the top that reads: 'version 9/3/02 to list your name, the subject of the model and the date. For example: ' Rmeyers-NewExpPop Growth with K = 0.1 -9/03/02 Save Project) -> Now document your model. To do you will need to the do following: a) Save a working copy on your data disk ( if you have already Saved and renamed it just pick b) Print an output - Run & label the graph (model name/your name/date) and then select PRINT. c) Print a model List - select the model and the assignment, graph label and graph max/min sections above it and Print selection. III.Changing the model a) Prepare a fresh MasterModel folder to work on. Name it ExpPopGro1.2 . b) double and halve the value of K. - RUN each time to check your results against expectations. c) increase by a factor of two and then five your initial population. - RUN to check each out against expectations. - See section IV. immediately below for how to document multiple changes of this type on one graph. (You do NOT yet need to Save & Document these section III models). IV. Multiple Outputs Suppose we wish to show the results of various models with differing values for K on the same graph. Study the following code and edit your new ExpPopGro1.2 population model to match it. Then, try it out. Remember, you do not have to type in anything that starts with a ' (single quote mark) such as the line below that reads 'Define Graph Maxima and Minima Such lines are merely comments (i.e. notes to yourself, REMarks) and are ignored by BASIC. 'Define Graph Maxima and Minima xMin = 0 xMax = 25 '<- - - notice change : : 'assign constants... N0 = T=0 'start time at zero days dt = 1 'time is advanced by 1 day/cycle DO WHILE T < 25 'keep going until time reaches day=26 '---solve & plot 1rst value--K = 0.1 N = N0 * EXP(K*T) X1 = T: Y1 = N: StyleType = 0 : PlotPoint BioMod'02 assign.#1 page 3 ver. September 2, 2002 '--- solve & plot second value--K = 0.2 N = N0 * EXP(K*T) N = N0 * EXP(K*T) X1 = T: Y1 = N: StyleType = 1: PlotPoint T = T + dt LOOP 'loop back to WHILE ' advance the time by dT(1 hour here) Note above that 1) time (& graph) maximum has been lowered to 25 and that the change in plotting symbols has been achieved by changing the StyleType. Be certain you understand that this plots 2 separate curves because each time (T) through the loop the equation is solved and plotted twice, once for each value of K. Also trace through in your mind the WHILE....LOOP control loop and the advancing of time by increments of dT each time through. Save this project with its changes. As practice in multiple output graphing (see assignment summary below) -> Set up a new MasterModel folder (ExpPopGrow1.3) -> Type in and run a model in which three values for K are shown on a single graph plot. K = 0.1, 0.2, 0.075 -> Document (i.e. model on disk, printed list and printed output) your results. -> Save & Exit BASIC to the desktop. V. Read this As this is your first modeling assignment to be handed in, now is an excellent time to review what is required for a submission. At the beginning of the specified assignment due deadline, you should hand me full 4 piece documentation (a model LIST, a printed labelled output graph, a working project file Saved on your disk & a brief state...

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:

Skidmore - ROY - 2
Mammalian Physiology - Final Paper &amp; Talk Guidelinesrevised 11/21/02The purpose of the final review paper is to have you examine some of the current research literature in respiratory, renal or neural physiology. The purpose of the final talk is t
Skidmore - ROY - 2
BioMod 02Final Project and Talk Evaluation Many have asked about how to approach the final project and how it is evaluated. I thought the material below may be of help. I. Final Project Unlike all other course model evaluations, evaluation of the f
Skidmore - ROY - 2
BioMod02Final*Note : Models done in class are not availbale as projectsProject Model ListSpain (available for perusal in 316 (45132), many have their equivalents in Keen) 8.5 Deer and hunters- age class model age class 8.6 North Sea fisheries
Skidmore - ROY - 2
Systems Neurophysiology- Functional Neuroanatomy F'08 The final stretch schedule version Monday Dec. 1Read Present Present figs PresenterBefore Tuesday Nov. 18 review or learn key figures 1-7,1-8,1-9,3-1,6-1,6-2 Nov. 18 Nov. 19 Nov. 20 Nov. 25 Nov
Skidmore - ROY - 2009
Sample &quot;questions&quot;- Part 1 The items below are meant to get you thinking in a mode similar to that of some of the questions you are likely to see on the exams. They are NOT meant to be exhaustive of the subject in any way; they merely are sample repr
Skidmore - ROY - 2
Systems Neurophysiology- Functional Neuroanatomy F'08 The final stretch schedule version Thursday Nov. 13Read Present Present figs PresenterBefore Tuesday Nov. 18 review or learn key figures 1-7,1-8,1-9,3-1 Nov. 18 Nov. 19 Nov. 20 Nov. 25 Nov. 26
Skidmore - ROY - 08
Exam 3 information Bio of Mind Spring '08There follows a sample 3rd exam from a previous edition of the course. Note that our exam this year covers Learning &amp; Memory 1 through Mental Illness 2. The usual warnings apply with respect to a sample exam
Skidmore - ROY - 2
Exam 3 information Bio of Mind Spring '08There follows a sample 3rd exam from a previous edition of the course. Note that our exam this year covers Learning &amp; Memory 1 through Mental Illness 2. The usual warnings apply with respect to a sample exam
Skidmore - ROY - 2
Skidmore - ROY - 2003
Skidmore - ROY - 07
Exam 3 information Bio of Mind Spring '07There follows a sample 3rd exam from a previous edition of the course. Note that our exam this year covers Learning &amp; Memory 1 (April 5) through Mental Illness 2 (May 1) The usual warnings apply with respect
Skidmore - ROY - 2
Exam 3 information Bio of Mind Spring '07There follows a sample 3rd exam from a previous edition of the course. Note that our exam this year covers Learning &amp; Memory 1 (April 5) through Mental Illness 2 (May 1) The usual warnings apply with respect
Skidmore - ROY - 2009
Sample &quot;questions&quot;- Part 2 The items below are meant to get you thinking in a mode similar to that of some of the questions you are likely to see on the exams. They are NOT meant to be exhaustive of the subject in any way; they merely are sample repr
Skidmore - ROY - 09
Biology of the Mind Sample ExamName_ (please (!) PRINT clearly) Lab (circle): 001 002 003 00415 Feb. Examination #1 Welcome to Exam 1 ! 1. Write your name at the beginning page of each of the four questions now. 2. In all 4 questions, you have a
Skidmore - ROY - 2
Biology of the Mind Sample ExamName_ (please (!) PRINT clearly) Lab (circle): 001 002 003 00415 Feb. Examination #1 Welcome to Exam 1 ! 1. Write your name at the beginning page of each of the four questions now. 2. In all 4 questions, you have a
Skidmore - EX - 09
On the following pages you will find the entire first exam from last years course. This should give you a good feeling for question types, amount of choice in each question and other exam-related issues. However you should be aware of the following p
Skidmore - EX - 1
On the following pages you will find the entire first exam from last years course. This should give you a good feeling for question types, amount of choice in each question and other exam-related issues. However you should be aware of the following p
Skidmore - ROY - 09
Issues in Neuroscience Stem cells / moral status of an embryo( Read: Gaz. Preface, Ch1 + articles as listed on web page ) Be prepared to contribute to a discussion based on the following four questions. 1) Background: Gazzaniga - Moral Status of an
Skidmore - ROY - 2
Issues in Neuroscience Stem cells / moral status of an embryo( Read: Gaz. Preface, Ch1 + articles as listed on web page ) Be prepared to contribute to a discussion based on the following four questions. 1) Background: Gazzaniga - Moral Status of an
Skidmore - ROY - 09
Bio of Mind email Friday March 14 @ 8:50 a.m. Greetings! Apologies for interrupting your spring vacation bliss . As promised, here is the assignment for next week's Issues in Neuroscience (Neuroethics) portion of the lab. Before class / Please read G
Skidmore - ROY - 2
Bio of Mind email Friday March 14 @ 8:50 a.m. Greetings! Apologies for interrupting your spring vacation bliss . As promised, here is the assignment for next week's Issues in Neuroscience (Neuroethics) portion of the lab. Before class / Please read G
Skidmore - ROY - 09
Exam 1 Spring 08 Summary Average = 80.15 without curve 82.65 with curve Distribution (post-curve) 16 As 24 Bs 13 Cs 5 Ds 1 F You will find grad es on the inside of the front cover. 1. 80 2. 75 3. 85 4. 80 80 + 2.5
Skidmore - ROY - 2
Exam 1 Spring 08 Summary Average = 80.15 without curve 82.65 with curve Distribution (post-curve) 16 As 24 Bs 13 Cs 5 Ds 1 F You will find grad es on the inside of the front cover. 1. 80 2. 75 3. 85 4. 80 80 + 2.5
Skidmore - ROY - 2
Skidmore - ROY - 2003
Skidmore - ROY - 2
Skidmore - ROY - 2003
Skidmore - ROY - 2
Skidmore - ROY - 2003
Skidmore - ROY - 2
Skidmore - ROY - 2003
Skidmore - ROY - 2
Skidmore - ROY - 2003
Skidmore - ROY - 2
Skidmore - ROY - 2003
Skidmore - ROY - 2
Skidmore - ROY - 2003
Skidmore - ROY - 2009
Hollywood Server Access Access of your hollywood text file from a PC From on campus (only) To connect Start-&gt; Run -&gt; \hollywood.skidmore.edu login as usual to hollywood (Biology) After hollywood mounts . Follow the path CompVert2009 -&gt; CompVertData-&gt;
Skidmore - ROY - 2009
Exam #1 Resources Below you will find some sample possible question types and questions. Some of these are drawn from past exams and some are new. Also recall that in many of the lectures before circulation one or more summary questions were provided
Skidmore - ROY - 2009
Skidmore - ROY - 2009
Blood Reading advice skip figure 2.16 and carbonic anhydrase (CA) material on pg 86-87. Define the physiological significance of Respiratory pigment O2 dissociation curve O2 capacity Anemia Dual hemoglobins in the toadfish P50 shift of llama blood B
Skidmore - ROY - 2009
Circulation Reading advice skim invertebrates 116-120, skip blood coagulation 121-122. Define the physiological significance of Stroke volume Hematocrtit (HCT) Caudal hearts Bulbus arteriosis Teleost sinus venosis Spiral value Conus arteriosis Forea
Skidmore - ROY - 2009
Question General Knowledge InstructionsThere have been 13 lectures thus far in the course. Each question pair below focuses on a major issue of that lecture topic. Pick one question from each pair available on a topic. Answer all 13 topics. The que
Skidmore - ROY - 2009
Respiration Reading advice skim Egg respiration 47-50, insect aquatic respiration 54-57 Define the physiological significance of Greenhouse effect [CO2] in microenvironments 47 mmHg H20 vapor pressure Henrys law Tidal pool gas values Molecular weigh
Skidmore - ROY - 2
BioModel '02Computer Modeling of Biological SystemsMW 12:20-1:15, W 1:15-3:15 Dana181Outline of Topics &amp; Readings TopicKeen-H* H* 1 1 -2 2 1 2 3,5 3,5 3,5 6 6 6 7 7 7 7 7 7 9 9 9 13 13 13 14 14 14 15 15 15 -I. Basic Tools For Modeling Sept.
Skidmore - ROY - 2
BioMod 2002 Modeling in BASIC - 1rst Session I. Starting up the modeling language Visual Basic 6 - Start up your Windows 2000 machine (always restart if someone worked before you). - Open MyComputer and insert the Biomodeling floppy disk (we will use
Skidmore - ROY - 2007
Sample &quot;questions&quot;- Part 3 Nervous System The items below are meant to get you thinking in a mode similar to that of some of the questions you are likely to see on the exams. They are NOT meant to be exhaustive of the subject in any way; they merely
Skidmore - ROY - 2009
Diving Lab Experimental Procedure Overview/Preview CompVert07 Preparation: As per the web Lab outline, pre-read SN on diving (178-190) before lab, paying particular attention to the SN text figures 5.5 and 5.6 that show the heart rate and flow resp
Skidmore - ROY - 2006
Bi 236 Lab Exercise Physiology 2005 Using Excel Spreadsheet to Pool Exercise Physiology Data A spreadsheet for the entire class has been set up on the CITS hollywood server. One computer in the lab will be set up for data entry. (Dont open another co
Skidmore - ROY - 2004
List of People Signed Up To Take the Friday 9 am Exam. An exam will be prepared for each and left out in lab 316 at 9 a.m. Name Kristen Massinghan Allyson Smead Meghan Dinsmore Brian Prue Leah Elliot Lyndsay Leach Vanessa Ruiz Linda Sinclair Christin
Skidmore - ROY - 02
' _ 'Lotka-Voltera Predation K&amp;S section 7.5 Ex. 7.6A 10/17/02 'w/ mod Euler &amp; dt = 0.1 plots Pops vs time ' Note 10/19/02 on dT 1)In VP pred-prey can use dt=.1 or .01, dt= .001 blows down(?) &amp; jams (probably exceeds some VB numeric limit '/ '-calc p
Skidmore - ROY - 2
' _ 'Lotka-Voltera Predation K&amp;S section 7.5 Ex. 7.6A 10/17/02 'w/ mod Euler &amp; dt = 0.1 plots Pops vs time ' Note 10/19/02 on dT 1)In VP pred-prey can use dt=.1 or .01, dt= .001 blows down(?) &amp; jams (probably exceeds some VB numeric limit '/ '-calc p
Skidmore - ROY - 02
' _ 'Lotka-Voltera Predation K&amp;S section 7.5 Ex. 7.6A 'w/ mod Euler &amp; dt = 0.1, Plots Pop vs. Pop ' Note 10/19 on dT 1)In VP pred-prey can use dt=.1 or .01, dt= .001 blows down(?) &amp; jams (probably exceeds some VB numeric limit '// '-calc prey pop cha
Skidmore - ROY - 2
' _ 'Lotka-Voltera Predation K&amp;S section 7.5 Ex. 7.6A 'w/ mod Euler &amp; dt = 0.1, Plots Pop vs. Pop ' Note 10/19 on dT 1)In VP pred-prey can use dt=.1 or .01, dt= .001 blows down(?) &amp; jams (probably exceeds some VB numeric limit '// '-calc prey pop cha
Skidmore - ROY - 2005
Comparative Vertebrate Physiology Fall 2005Anatomy Lab 3 Comparative Neuroanatomy Sources/reading1) 2) 3) 4) 5) Neuroanatomy lab procedure handout i.e this packet Neuroanatomy lab figures handout packet i.e the accompanying diagram packet Lecture
Skidmore - ROY - 2006
Comparative Vertebrate Physiology 2005EXERCISE PHYSIOLOGY This laboratory allows the students to measure the responses of their own cardio-respiratory systems to graded levels of exercise conducted by (and on) the students themselves. The procedure
Skidmore - OBSOLETE - 2002
END-USER LICENSE AGREEMENT FOR MICROSOFT FRONTPAGE 2000 SERVER EXTENSIONS IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement (&quot;EULA&quot;) is a legal agreement between you (either an individual or a single entity) and Microsoft Corporatio
Skidmore - OBSOLETE - 4
END-USER LICENSE AGREEMENT FOR MICROSOFT FRONTPAGE 2000 SERVER EXTENSIONS IMPORTANT-READ CAREFULLY: This Microsoft End-User License Agreement (&quot;EULA&quot;) is a legal agreement between you (either an individual or a single entity) and Microsoft Corporatio
UPenn - C - 90
Repair Work in Human-Computer DialogueAlison Cawsey*Department of Artificial Intelligence, University of Edinburgh, Scotland ajc@uk.ae.ed.aipnaPirkko RaudaskoskiEnglish Department, University of Oulu, Finland ekl-pr@finfou.bitnetAbstracl;: If
UPenn - J - 98
Book ReviewsLanguage at Work: Analyzing Communication Breakdown in the Workplace to Inform Systems Design Keith Devlin and Duska Rosenberg(Saint Mary's College of California and Brunel University) Stanford: CSLI Publications (CSLI lecture notes, n
UPenn - C - 88
A Constructive View of GPSGorHow to Make It WorkStephan BUSEMANN Christa HAUENSCHILD Technical University of Berlin Institute for Software and Theoretical Computer Science Project Group KIT Sekr. FR 5-12 Franklinstr. 28/29 D-1000 Berlin 10 E-mail