CS 1025 Computational Modeling and Simulation

The Game of Life (NetLOGO model)

Game of LIFE NetLOGO model, and other practice questions for test study guide.



  1. Scanned in Handouts and old test/quiz pages: Please IGNORE the last two pages (oil spill percolation model we have NOT covered in class yet this fall).

    The above is a PDF of questions on NetLOGO GAME of LIFE model along with NetLogo show the output...

  2. The Game of Life model: http://ccl.northwestern.edu/netlogo/models/Life...

  3. The GAME OF LIFE NetLOGO model.

  4. In NetLogo, show what the output would look like for the following:
  5. What is the output you would see on the NetLogo grid 
    after running the ExampleOne procedure?   
       (Draw a rough picture of about what it would look like). 
             
     TO ExampleOne
         ca
         cro 8
         
         ask turtles [    
             fd 5
        
             pd 
             fd 5
       
             pu
             fd 2
         
             pd
             fd 2
        
             pu 
             fd 2
         ]
     END     
    
  6. Same question as above. Show the output of ExampleTwo procedure.
  7. Show what the screen or the NetLogo grid would probably look like AFTER the following procedure ExampleTwo finishes.
               (Note: there may be many possible drawings that get full credit for this
                      question.   You will NOT be told this on the exam, but you are being
                      told this for this study guide).  CRO versus CRT - VIP to know!
    TO ExampleTwo
        CA
        CRT 8
        
        ask turtles 
        [
            PD
            FD 8
        ]   
    END
    
  8. With regard to the world of NetLogo, what is a TORUS setting for the grid of patches? Looking at some output, be able to describe whether the world was a TORUS, or wrapped just horizontally, or if it wrapped just vertically. Recall in class how a sheet of paper could demonstrate a grid world wrapping vertically OR wrapping horizontally, but its hard to show it doing both..
  9. What does the following NetLogo code produce as output?
    to randomColorPatches
       
       ask patches
          [
             ifelse random  100 < 30 
                 [ set pcolor green ]    ;  Note: you might be asked to show the output of a NetLogo procedure that 
                 [ set pcolor white ]    ;        included an ifelse, so be sure to understand how ifelse is used in this example!
          ]
    end
       
  10. Show the output (generally what it would look like). This question tests one of your old assignment questions, the one where the EVEN and the ODD turtles did different things .

    SHOW THE OUTPUT, roughly what it would look like when stagger is done.

  11. to stagger
        ca
        cro 8
        ask turtles [ifelse remainder who 2 = 0  [ fd 5  wait 0.2] 
                                                 [ fd 10 wait 0.2] ]
    end
    
  12. SHOW THE OUTPUT, roughly what it would look like when stagger3 is done.

    Just draw a picture of what the NetLogo window would look like after execution of stagger3 is done.

    Copy and Paste the NetLogo code into your NetLogo if you want to see what the output looks like and verify you figured it out.

  13. to stagger3
       ca
       cro 15
       ask turtles 
           [ ifelse remainder who 3 = 0      
    
                  [ fd 5 wait 0.1]                ; the remainder was 0
    
                  [ ifelse remainder who 3 = 1    ; remainder was NOT 0
                                  
                          [fd 10 wait 0.1]    ; the remainder was = 1
                                 
                          [fd 15 wait 0.1]    ; the remainder was = 2 
                  ]
           ]
    end