motivztion for getting matriculation1

No preview image

1 collaborator

111%d7%aa%d7%a6%d7%9c%d7%95%d7%9d oded bar shalom (Author)

Tags

(This model has yet to be categorized with any tags)
Model group uhaifa-modeling-13 | Visible to everyone | Changeable by everyone
Model was written in NetLogo 5.0.3 • Viewed 308 times • Downloaded 51 times • Run 0 times
Download the 'motivztion for getting matriculation1' modelDownload this modelEmbed this model

Do you have questions or comments about this model? Ask them here! (You'll first need to log in.)


Comments and Questions

recommendation on how to contine

שלום עודד אני רואה שהמודל פועל בצורה דומה לזו שבשבוע שעבר. לפי דעתי כדאי להתייעץ לגבי הקשיים - דרך הקבוצה (אני בודקת כל יומיים), עם אייל. כפי שתראה בדוגמה של ההתייעצות של אילנה, זה מגיע גם להמלצות על חלקי קוד מתאימים. לגבי גורמים מעכבים ומקדמים, שוחחנו על אפשרות שהם יופיעו באופן אקראי או מתוכנן בכל אחד מן המסלולים. אפשר כמובן להתייעץ איך לבצע את זה. לאחר מכן, כאשר רץ נוחת על מחסום או תמיכה (זיהוי הצבע מתחתיי) המהירות שלי, או מספר הצעדים שאתקדם בתור הבא עולה או יורדת שרונה

Posted almost 11 years ago

משימות מיידיות

שלום עודד פרט להתקדמות עם המודל, נדרש עדכון של קובץ המודל כדי שיתאים למה שאתה עושה עכשיו חשוב דרך הפוסטר והכנתו, המיקוד יעזור שרונה

Posted almost 11 years ago

המודל

הכנסנו מעכבים ומאיצים במודל, אכתוב את הכל בתכנון המודל תודה רבה עודד

Posted almost 11 years ago

העלאת המודל

אעלתי מודל משודרג

Posted almost 11 years ago

יומן ותכנון המודל

הועלה

Posted almost 11 years ago

טיוטת פוסטר

ב"ה שלום שרונה האם אפשר לראות טיוטה של מבנה הפוסטר כדוגמה? תודה עודד

Posted almost 11 years ago

טיוטת פוסטר

חוץ מאשר המבנה, אני מעדיפה שאתם תמלאו אותו בתכנים אין לי דוגמה שרונה

Posted almost 11 years ago

Click to Run Model

turtles-own   [ motivation energy age speed finished? walk_stat]

to setup
 
  clear-all
  ask patches  [ set pcolor pxcor / max-pxcor * -1 + blue ]
  foreach n-values (max-pxcor * max-pycor * 4 * obstacles / 100)   [?]
  [
   ask one-of patches with [pcolor != red and pcolor != green ]
   [
    ifelse random(100) <= motivation-areas [set pcolor green] [set pcolor red] 
     
   ] 
    
  ]
  
  create-turtles 10  
  [ set finished? false
    setxy min-pxcor random-pycor ;; starting point - left side of the screen and random vertical patch
    set heading 90 ;; heading right! -->
    set motivation 0 ;; initialized value for all turtles motivation...
    set pcolor red ;; starting position color...
    set speed 1
    set color scale-color blue age 0 50
    set walk_stat false
    set shape "person"

;; colors each turtle a shade of blue proportional
;; to its value for the age variable
 
    
    ]
  
  
 
 reset-ticks
end 

to go
  if ticks = 0 [reset-timer]
  if not any? turtles with [motivation < max-pxcor ] [  stop ]
  move-turtles
  ;eat-grass
  tick
  wait 0.1
end 

to move-turtles 
  ask turtles with [not finished?][ 
    ifelse xcor <= max-pxcor - 1 
    [
      if pcolor = red [set speed random-float 0.3]
      if pcolor = green [set speed 1 + random-float 2]
      ifelse walk_stat 
      [set shape "person_walk2" set walk_stat not walk_stat]
      [set shape "person_walk" set walk_stat not walk_stat]
      forward (random-float 0.5 + sqrt((pycor + max-pycor) / (max-pycor * 2)) * speed)  set motivation pxcor 
      set speed 1
      ] ;; move between 0 to 1 patch
    ;;;(pycor + max-pycor) / (max-pycor * 2) is an example of speeding as f(height)
    [ set xcor max-pxcor set motivation max-pxcor set finished? true set label timer] ;; align end position to the right edge
    ]
  
  
  
  
  
 
; [ if  ( pcolor=red)  [ set speed speed - 3]
;        ([ pcolor=green  [ set speed speed + 3 ]]
 
 
  ;ask turtles [ set shape "sheep" ]
  ;ask turtles [ set color  white ]
end 
 
 
 
 
 ;;; just for fun change the color of the patch from blue to green and increse energy by 10...

to eat-grass
   ask turtles [
     if pcolor = blue [ set pcolor green
       set energy energy  + 10 ] ]
end 
 
 

There are 7 versions of this model.

Uploaded by When Description Download
oded bar shalom almost 11 years ago nisui 6 11_06_13_fix.nlogo Short comment this new version Replace the existing model with this .nlogo file Create a new model, a child of "motivztion for getting matriculation1", to be called: Download this version
oded bar shalom almost 11 years ago nisui 6 11_06_13_fix.nlogo Download this version
oded bar shalom almost 11 years ago nisui 5 10_06_13_fix Download this version
oded bar shalom almost 11 years ago Reverted to older version Download this version
oded bar shalom almost 11 years ago nisui 6 11_06_13_fix.nlogo Download this version
oded bar shalom almost 11 years ago nisui 4 3613_fix.nlogo Download this version
oded bar shalom almost 11 years ago Initial upload Download this version

Attached files

File Type Description Last updated
1 11613 חקירת המודל.docx word 1 11613 חקירת המודל.docx almost 11 years ago, by oded bar shalom Download
nisui 6 11_06_13_fix.nlogo word nisui 6 11_06_13_fix.nlogo almost 11 years ago, by oded bar shalom Download
OdedBS Dairy9.docx word OdedBS Dairy9.docx almost 11 years ago, by oded bar shalom Download
OdedBS model 10613 1.docx word OdedBS model 10613 1.docx almost 11 years ago, by oded bar shalom Download
פוסטר 1 12613.docx word Fileפוסטר 1 12613.docx almost 11 years ago, by oded bar shalom Download

This model does not have any ancestors.

This model does not have any descendants.