<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://www.simulace.info/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Pavl08</id>
	<title>Simulace.info - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://www.simulace.info/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Pavl08"/>
	<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php/Special:Contributions/Pavl08"/>
	<updated>2026-07-27T16:34:45Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.31.1</generator>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24958</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24958"/>
		<updated>2024-01-21T19:47:00Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Code */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
This function sets up the town. It has a colour grey, bacause London is a pretty grey.&lt;br /&gt;
  ask patches [&lt;br /&gt;
    set pcolor grey&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
This is set up for the delivery vehicle. It always starts the day in the storage.&lt;br /&gt;
  create-cars 1&lt;br /&gt;
  ask cars [&lt;br /&gt;
    setxy storagex storagey&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;car&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
Here the storage is created - it has a shape of &amp;quot;pentagon&amp;quot;, since it should be differenciated from the customers.&lt;br /&gt;
   create-storages 1&lt;br /&gt;
   ask storages [&lt;br /&gt;
     setxy storagex storagey&lt;br /&gt;
     set size 2&lt;br /&gt;
     set shape &amp;quot;pentagon&amp;quot;&lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
Cuustomers are created in random places and the number of them is set by user using slider before the simulation setup.&lt;br /&gt;
  create-customers number_of_customers&lt;br /&gt;
   ask customers [&lt;br /&gt;
    setxy random-xcor random-ycor&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;house&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
the go function. First step is to identify the closest customer, then go to him. The vehicle has capacity 20 packages, so if the car is not empty, it delivers the package to the customer. Otherwise it goes to the storage to get more packages. If the delivery is finished, the functions stop.&lt;br /&gt;
  identify-closest&lt;br /&gt;
  make-step&lt;br /&gt;
  &lt;br /&gt;
  fill-car&lt;br /&gt;
  &lt;br /&gt;
  if (filled_car != 20) [deliver]&lt;br /&gt;
  if (finish_delivery = 1) [stop]&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results and conclusion=&lt;br /&gt;
'''Results''' &lt;br /&gt;
&lt;br /&gt;
The transport vehicle effectively navigated the city to make deliveries under various conditions. The user is able to control key factors such as weather, day of the week, time of the day, and traffic intensity to observe the impact on the vehicle’s performance. The simulation records the number of customers that still need to be served, also how many times the vehicle had to return to the storage facility to finish all the deliveries. The recorded data provided insights into how external factors influenced the operational pattern of the transport vehicle.&lt;br /&gt;
&lt;br /&gt;
'''Conclusion''' &lt;br /&gt;
&lt;br /&gt;
This simulation successfully modeled the dynamic environment in which a transport vehicle is making deliveries in the city. The results demonstrated that external factors (weather, day of the week, time and traffic) had effects on the delivery process and the delivery was slower. The needed returns to the storage facility to fill the car again was also influenced by these factors, making the time even longer - showing that real time adjustments, optimizing the shortest way possible and schedules are significant for an effective delivery.&lt;br /&gt;
&lt;br /&gt;
This is a simplified version of a real world problem, and there could be more variables added, for example availability/unavailability of customers, time required to fill the car again in the storage facility, multiple vehicles and so on.&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
[[File:Seminarna praca Pavlikova.nlogo]]&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=File:Seminarna_praca_Pavlikova.nlogo&amp;diff=24957</id>
		<title>File:Seminarna praca Pavlikova.nlogo</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=File:Seminarna_praca_Pavlikova.nlogo&amp;diff=24957"/>
		<updated>2024-01-21T19:46:34Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24956</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24956"/>
		<updated>2024-01-21T19:43:26Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Results and conclusion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
This function sets up the town. It has a colour grey, bacause London is a pretty grey.&lt;br /&gt;
  ask patches [&lt;br /&gt;
    set pcolor grey&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
This is set up for the delivery vehicle. It always starts the day in the storage.&lt;br /&gt;
  create-cars 1&lt;br /&gt;
  ask cars [&lt;br /&gt;
    setxy storagex storagey&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;car&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
Here the storage is created - it has a shape of &amp;quot;pentagon&amp;quot;, since it should be differenciated from the customers.&lt;br /&gt;
   create-storages 1&lt;br /&gt;
   ask storages [&lt;br /&gt;
     setxy storagex storagey&lt;br /&gt;
     set size 2&lt;br /&gt;
     set shape &amp;quot;pentagon&amp;quot;&lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
Cuustomers are created in random places and the number of them is set by user using slider before the simulation setup.&lt;br /&gt;
  create-customers number_of_customers&lt;br /&gt;
   ask customers [&lt;br /&gt;
    setxy random-xcor random-ycor&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;house&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
the go function. First step is to identify the closest customer, then go to him. The vehicle has capacity 20 packages, so if the car is not empty, it delivers the package to the customer. Otherwise it goes to the storage to get more packages. If the delivery is finished, the functions stop.&lt;br /&gt;
  identify-closest&lt;br /&gt;
  make-step&lt;br /&gt;
  &lt;br /&gt;
  fill-car&lt;br /&gt;
  &lt;br /&gt;
  if (filled_car != 20) [deliver]&lt;br /&gt;
  if (finish_delivery = 1) [stop]&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results and conclusion=&lt;br /&gt;
'''Results''' &lt;br /&gt;
&lt;br /&gt;
The transport vehicle effectively navigated the city to make deliveries under various conditions. The user is able to control key factors such as weather, day of the week, time of the day, and traffic intensity to observe the impact on the vehicle’s performance. The simulation records the number of customers that still need to be served, also how many times the vehicle had to return to the storage facility to finish all the deliveries. The recorded data provided insights into how external factors influenced the operational pattern of the transport vehicle.&lt;br /&gt;
&lt;br /&gt;
'''Conclusion''' &lt;br /&gt;
&lt;br /&gt;
This simulation successfully modeled the dynamic environment in which a transport vehicle is making deliveries in the city. The results demonstrated that external factors (weather, day of the week, time and traffic) had effects on the delivery process and the delivery was slower. The needed returns to the storage facility to fill the car again was also influenced by these factors, making the time even longer - showing that real time adjustments, optimizing the shortest way possible and schedules are significant for an effective delivery.&lt;br /&gt;
&lt;br /&gt;
This is a simplified version of a real world problem, and there could be more variables added, for example availability/unavailability of customers, time required to fill the car again in the storage facility, multiple vehicles and so on.&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24955</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24955"/>
		<updated>2024-01-21T19:43:14Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Results and conclusion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
This function sets up the town. It has a colour grey, bacause London is a pretty grey.&lt;br /&gt;
  ask patches [&lt;br /&gt;
    set pcolor grey&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
This is set up for the delivery vehicle. It always starts the day in the storage.&lt;br /&gt;
  create-cars 1&lt;br /&gt;
  ask cars [&lt;br /&gt;
    setxy storagex storagey&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;car&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
Here the storage is created - it has a shape of &amp;quot;pentagon&amp;quot;, since it should be differenciated from the customers.&lt;br /&gt;
   create-storages 1&lt;br /&gt;
   ask storages [&lt;br /&gt;
     setxy storagex storagey&lt;br /&gt;
     set size 2&lt;br /&gt;
     set shape &amp;quot;pentagon&amp;quot;&lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
Cuustomers are created in random places and the number of them is set by user using slider before the simulation setup.&lt;br /&gt;
  create-customers number_of_customers&lt;br /&gt;
   ask customers [&lt;br /&gt;
    setxy random-xcor random-ycor&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;house&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
the go function. First step is to identify the closest customer, then go to him. The vehicle has capacity 20 packages, so if the car is not empty, it delivers the package to the customer. Otherwise it goes to the storage to get more packages. If the delivery is finished, the functions stop.&lt;br /&gt;
  identify-closest&lt;br /&gt;
  make-step&lt;br /&gt;
  &lt;br /&gt;
  fill-car&lt;br /&gt;
  &lt;br /&gt;
  if (filled_car != 20) [deliver]&lt;br /&gt;
  if (finish_delivery = 1) [stop]&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results and conclusion=&lt;br /&gt;
'''Results''' &lt;br /&gt;
The transport vehicle effectively navigated the city to make deliveries under various conditions. The user is able to control key factors such as weather, day of the week, time of the day, and traffic intensity to observe the impact on the vehicle’s performance. The simulation records the number of customers that still need to be served, also how many times the vehicle had to return to the storage facility to finish all the deliveries. The recorded data provided insights into how external factors influenced the operational pattern of the transport vehicle.&lt;br /&gt;
&lt;br /&gt;
'''Conclusion''' &lt;br /&gt;
This simulation successfully modeled the dynamic environment in which a transport vehicle is making deliveries in the city. The results demonstrated that external factors (weather, day of the week, time and traffic) had effects on the delivery process and the delivery was slower. The needed returns to the storage facility to fill the car again was also influenced by these factors, making the time even longer - showing that real time adjustments, optimizing the shortest way possible and schedules are significant for an effective delivery.&lt;br /&gt;
&lt;br /&gt;
This is a simplified version of a real world problem, and there could be more variables added, for example availability/unavailability of customers, time required to fill the car again in the storage facility, multiple vehicles and so on.&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24954</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24954"/>
		<updated>2024-01-21T19:42:43Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Results and conclusion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
This function sets up the town. It has a colour grey, bacause London is a pretty grey.&lt;br /&gt;
  ask patches [&lt;br /&gt;
    set pcolor grey&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
This is set up for the delivery vehicle. It always starts the day in the storage.&lt;br /&gt;
  create-cars 1&lt;br /&gt;
  ask cars [&lt;br /&gt;
    setxy storagex storagey&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;car&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
Here the storage is created - it has a shape of &amp;quot;pentagon&amp;quot;, since it should be differenciated from the customers.&lt;br /&gt;
   create-storages 1&lt;br /&gt;
   ask storages [&lt;br /&gt;
     setxy storagex storagey&lt;br /&gt;
     set size 2&lt;br /&gt;
     set shape &amp;quot;pentagon&amp;quot;&lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
Cuustomers are created in random places and the number of them is set by user using slider before the simulation setup.&lt;br /&gt;
  create-customers number_of_customers&lt;br /&gt;
   ask customers [&lt;br /&gt;
    setxy random-xcor random-ycor&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;house&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
the go function. First step is to identify the closest customer, then go to him. The vehicle has capacity 20 packages, so if the car is not empty, it delivers the package to the customer. Otherwise it goes to the storage to get more packages. If the delivery is finished, the functions stop.&lt;br /&gt;
  identify-closest&lt;br /&gt;
  make-step&lt;br /&gt;
  &lt;br /&gt;
  fill-car&lt;br /&gt;
  &lt;br /&gt;
  if (filled_car != 20) [deliver]&lt;br /&gt;
  if (finish_delivery = 1) [stop]&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results and conclusion=&lt;br /&gt;
'''Results:''' The transport vehicle effectively navigated the city to make deliveries under various conditions. The user is able to control key factors such as weather, day of the week, time of the day, and traffic intensity to observe the impact on the vehicle’s performance. The simulation records the number of customers that still need to be served, also how many times the vehicle had to return to the storage facility to finish all the deliveries. The recorded data provided insights into how external factors influenced the operational pattern of the transport vehicle.&lt;br /&gt;
&lt;br /&gt;
'''Conclusion:''' This simulation successfully modeled the dynamic environment in which a transport vehicle is making deliveries in the city. The results demonstrated that external factors (weather, day of the week, time and traffic) had effects on the delivery process and the delivery was slower. The needed returns to the storage facility to fill the car again was also influenced by these factors, making the time even longer - showing that real time adjustments, optimizing the shortest way possible and schedules are significant for an effective delivery.&lt;br /&gt;
&lt;br /&gt;
This is a simplified version of a real world problem, and there could be more variables added, for example availability/unavailability of customers, time required to fill the car again in the storage facility, multiple vehicles and so on.&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24953</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24953"/>
		<updated>2024-01-21T19:29:46Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Results and conclusion */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
This function sets up the town. It has a colour grey, bacause London is a pretty grey.&lt;br /&gt;
  ask patches [&lt;br /&gt;
    set pcolor grey&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
This is set up for the delivery vehicle. It always starts the day in the storage.&lt;br /&gt;
  create-cars 1&lt;br /&gt;
  ask cars [&lt;br /&gt;
    setxy storagex storagey&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;car&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
Here the storage is created - it has a shape of &amp;quot;pentagon&amp;quot;, since it should be differenciated from the customers.&lt;br /&gt;
   create-storages 1&lt;br /&gt;
   ask storages [&lt;br /&gt;
     setxy storagex storagey&lt;br /&gt;
     set size 2&lt;br /&gt;
     set shape &amp;quot;pentagon&amp;quot;&lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
Cuustomers are created in random places and the number of them is set by user using slider before the simulation setup.&lt;br /&gt;
  create-customers number_of_customers&lt;br /&gt;
   ask customers [&lt;br /&gt;
    setxy random-xcor random-ycor&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;house&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
the go function. First step is to identify the closest customer, then go to him. The vehicle has capacity 20 packages, so if the car is not empty, it delivers the package to the customer. Otherwise it goes to the storage to get more packages. If the delivery is finished, the functions stop.&lt;br /&gt;
  identify-closest&lt;br /&gt;
  make-step&lt;br /&gt;
  &lt;br /&gt;
  fill-car&lt;br /&gt;
  &lt;br /&gt;
  if (filled_car != 20) [deliver]&lt;br /&gt;
  if (finish_delivery = 1) [stop]&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results and conclusion=&lt;br /&gt;
'''Results:''' The transport vehicle effectively navigated the city to make deliveries under various conditions. The user is able to control key factors such as weather, day of the week, time of the day, and traffic intensity to observe the impact on the vehicle’s performance. The simulation records the number of customers that still need to be served, also how many times the vehicle had to return to the storage facility to finish all the deliveries. The recorded data provided insights into how external factors influenced the operational pattern of the transport vehicle.&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24952</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24952"/>
		<updated>2024-01-21T10:38:52Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
This function sets up the town. It has a colour grey, bacause London is a pretty grey.&lt;br /&gt;
  ask patches [&lt;br /&gt;
    set pcolor grey&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
This is set up for the delivery vehicle. It always starts the day in the storage.&lt;br /&gt;
  create-cars 1&lt;br /&gt;
  ask cars [&lt;br /&gt;
    setxy storagex storagey&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;car&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
Here the storage is created - it has a shape of &amp;quot;pentagon&amp;quot;, since it should be differenciated from the customers.&lt;br /&gt;
   create-storages 1&lt;br /&gt;
   ask storages [&lt;br /&gt;
     setxy storagex storagey&lt;br /&gt;
     set size 2&lt;br /&gt;
     set shape &amp;quot;pentagon&amp;quot;&lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
Cuustomers are created in random places and the number of them is set by user using slider before the simulation setup.&lt;br /&gt;
  create-customers number_of_customers&lt;br /&gt;
   ask customers [&lt;br /&gt;
    setxy random-xcor random-ycor&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;house&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
the go function. First step is to identify the closest customer, then go to him. The vehicle has capacity 20 packages, so if the car is not empty, it delivers the package to the customer. Otherwise it goes to the storage to get more packages. If the delivery is finished, the functions stop.&lt;br /&gt;
  identify-closest&lt;br /&gt;
  make-step&lt;br /&gt;
  &lt;br /&gt;
  fill-car&lt;br /&gt;
  &lt;br /&gt;
  if (filled_car != 20) [deliver]&lt;br /&gt;
  if (finish_delivery = 1) [stop]&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results and conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24951</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24951"/>
		<updated>2024-01-21T10:38:06Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
This function sets up the town. It has a colour grey, bacause London is a pretty grey.&lt;br /&gt;
  ask patches [&lt;br /&gt;
    set pcolor grey&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
This is set up for the delivery vehicle. It always starts the day in the storage.&lt;br /&gt;
  create-cars 1&lt;br /&gt;
  ask cars [&lt;br /&gt;
    setxy storagex storagey&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;car&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
Here the storage is created - it has a shape of &amp;quot;pentagon&amp;quot;, since it should be differenciated from the customers.&lt;br /&gt;
   create-storages 1&lt;br /&gt;
   ask storages [&lt;br /&gt;
     setxy storagex storagey&lt;br /&gt;
     set size 2&lt;br /&gt;
     set shape &amp;quot;pentagon&amp;quot;&lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
Cuustomers are created in random places and the number of them is set by user using slider before the simulation setup.&lt;br /&gt;
  create-customers number_of_customers&lt;br /&gt;
   ask customers [&lt;br /&gt;
    setxy random-xcor random-ycor&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;house&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
the go function. First step is to identify the closest customer, then go to him. The vehicle has capacity 20 packages, so if the car is not empty, it delivers the package to the customer. Otherwise it goes to the storage to get more packages. If the delivery is finished, the functions stop.&lt;br /&gt;
  identify-closest&lt;br /&gt;
  make-step&lt;br /&gt;
  &lt;br /&gt;
  fill-car&lt;br /&gt;
  &lt;br /&gt;
  if (filled_car != 20) [deliver]&lt;br /&gt;
  if (finish_delivery = 1) [stop]&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24950</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24950"/>
		<updated>2024-01-21T10:24:48Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
This function sets up the town. It has a colour grey, bacause London is a pretty grey.&lt;br /&gt;
  ask patches [&lt;br /&gt;
    set pcolor grey&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
This is set up for the delivery vehicle. It always starts the day in the storage.&lt;br /&gt;
  create-cars 1&lt;br /&gt;
  ask cars [&lt;br /&gt;
    setxy storagex storagey&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;car&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
Here the storage is created - it has a shape of &amp;quot;pentagon&amp;quot;, since it should be differenciated from the customers.&lt;br /&gt;
   create-storages 1&lt;br /&gt;
   ask storages [&lt;br /&gt;
     setxy storagex storagey&lt;br /&gt;
     set size 2&lt;br /&gt;
     set shape &amp;quot;pentagon&amp;quot;&lt;br /&gt;
  ] &lt;br /&gt;
&lt;br /&gt;
Cuustomers are created in random places and the number of them is set by user using slider before the simulation setup.&lt;br /&gt;
  create-customers number_of_customers&lt;br /&gt;
   ask customers [&lt;br /&gt;
    setxy random-xcor random-ycor&lt;br /&gt;
    set size 2&lt;br /&gt;
    set shape &amp;quot;house&amp;quot;&lt;br /&gt;
  ]&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24949</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24949"/>
		<updated>2024-01-21T10:17:21Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24948</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24948"/>
		<updated>2024-01-21T10:16:52Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'''Number_of_customers:''' how many customers will have a package delivered during the day.&lt;br /&gt;
*'''Time_of_day:''' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'''Day:''' the user can chose what day of the week it is. &lt;br /&gt;
*'''Weather:''' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24947</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24947"/>
		<updated>2024-01-21T10:16:09Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*'Number_of_customers:' how many customers will have a package delivered during the day.&lt;br /&gt;
*'Time_of_day:' whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*'Day:' the user can chose what day of the week it is. &lt;br /&gt;
*'Weather:' for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24946</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24946"/>
		<updated>2024-01-21T10:15:23Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 11.12.06.png |thumb|250px| Day and weather variables]]&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*Number_of_customers: how many customers will have a package delivered during the day.&lt;br /&gt;
*Time_of_day: whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*Day: the user can chose what day of the week it is. &lt;br /&gt;
*Weather: for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 &lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24945</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24945"/>
		<updated>2024-01-21T10:13:24Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*Number_of_customers: how many customers will have a package delivered during the day.&lt;br /&gt;
*Time_of_day: whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*Day: the user can chose what day of the week it is. &lt;br /&gt;
*Weather: for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
 File:Screenshot 2024-01-21 at 11.12.06.png&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=File:Screenshot_2024-01-21_at_11.12.06.png&amp;diff=24944</id>
		<title>File:Screenshot 2024-01-21 at 11.12.06.png</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=File:Screenshot_2024-01-21_at_11.12.06.png&amp;diff=24944"/>
		<updated>2024-01-21T10:12:48Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24943</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24943"/>
		<updated>2024-01-21T10:12:14Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
User can decide about various variables:&lt;br /&gt;
*Number_of_customers: how many customers will have a package delivered during the day.&lt;br /&gt;
*Time_of_day: whether the delivery car drives in the morning, lunch or afternoon.&lt;br /&gt;
*Day: the user can chose what day of the week it is. &lt;br /&gt;
*Weather: for simplification there are 4 types of weather that influence how fast the delivery vehicle can move.&lt;br /&gt;
&lt;br /&gt;
Both weather and day variables are chosen based on the data of transport in London and its average weather. Users can chose these variables based on a description below the &amp;quot;chooser&amp;quot; to make a more educated decision. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24942</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24942"/>
		<updated>2024-01-21T09:52:24Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 10.49.42.png |thumb|900px| Simulation overview]]&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24941</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24941"/>
		<updated>2024-01-21T09:51:25Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[FFile:Screenshot 2024-01-21 at 10.49.42.png |thumb|400px| Simulation overview]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=File:Screenshot_2024-01-21_at_10.49.42.png&amp;diff=24940</id>
		<title>File:Screenshot 2024-01-21 at 10.49.42.png</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=File:Screenshot_2024-01-21_at_10.49.42.png&amp;diff=24940"/>
		<updated>2024-01-21T09:50:05Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24939</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24939"/>
		<updated>2024-01-21T09:49:07Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 00.58.01.png |thumb|400px| Simulation - delivery vehicle in the middle, next to the storage facility.]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers.&lt;br /&gt;
&lt;br /&gt;
'''External Factors'''&lt;br /&gt;
&lt;br /&gt;
External factors like weather conditions and traffic congestion are integrated into the model. The model allows for the customization of these variables to simulate different scenarios.&lt;br /&gt;
&lt;br /&gt;
'''End of the Simulation'''&lt;br /&gt;
&lt;br /&gt;
The simulation concludes when all scheduled deliveries are completed. The model provides data on delivery costs and potential bottlenecks in the distribution process.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24938</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24938"/>
		<updated>2024-01-21T09:48:06Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 00.58.01.png |thumb|400px| Simulation - delivery vehicle in the middle, next to the storage facility.]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
'''Distribution Process'''&lt;br /&gt;
&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
The core of the model is the distribution process, where vehicles collect packages from storage facilities and deliver them to designated stores or direct to customers&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24937</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24937"/>
		<updated>2024-01-21T09:46:53Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Model */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 00.58.01.png |thumb|400px| Simulation - delivery vehicle in the middle, next to the storage facility.]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
The model for this project simulates the distribution process in London using an agent-based approach in NetLogo. It begins with a map of the world - onto which various distribution elements, such as vehicles, storage facilities, and delivery locations, are placed. &lt;br /&gt;
&lt;br /&gt;
'''Environment'''&lt;br /&gt;
&lt;br /&gt;
The simulation takes place within the city. Delivery locations are randomly generated within the simulation, each assigned a position in a Cartesian coordinate system. Each household is designated to receive one package. Once the final package is delivered, the vehicle returns to the storage facility, using the button “go to storage”.&lt;br /&gt;
&lt;br /&gt;
'''Agents'''&lt;br /&gt;
&lt;br /&gt;
In this model, agents represent different elements of the distribution network. Delivery vehicle is the primary agents. Storage facility and delivery locations are also represented, serving as starting and ending points for the distribution journey.&lt;br /&gt;
&lt;br /&gt;
'''Movement'''&lt;br /&gt;
&lt;br /&gt;
The movement of vehicles is a crucial aspect of the model. Vehicles navigate through the city, contending with variables such as traffic congestion, day of the week, weather or time of the day. Their movement patterns are influenced by all of the variables.&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24936</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24936"/>
		<updated>2024-01-21T07:30:26Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Sources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 00.58.01.png |thumb|400px| Simulation - delivery vehicle in the middle, next to the storage facility.]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24935</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24935"/>
		<updated>2024-01-21T07:30:03Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Sources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 00.58.01.png |thumb|400px| Simulation - delivery vehicle in the middle, next to the storage facility.]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.londonperfect.com/plan-your-trip/practical-information/weather-seasons.php&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://weatherspark.com/y/45061/Average-Weather-in-City-of-London-United-Kingdom-Year-Round&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24934</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24934"/>
		<updated>2024-01-21T07:24:33Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Sources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 00.58.01.png |thumb|400px| Simulation - delivery vehicle in the middle, next to the storage facility.]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.londonperfect.com/plan-your-trip/practical-information/weather-seasons.php&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24933</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24933"/>
		<updated>2024-01-21T07:24:20Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Sources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 00.58.01.png |thumb|400px| Simulation - delivery vehicle in the middle, next to the storage facility.]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.londonperfect.com/plan-your-trip/practical-information/weather-seasons.php&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
https://www.quora.com/How-common-are-thunderstorms-in-London&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24916</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24916"/>
		<updated>2024-01-21T00:10:11Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
[[File:Screenshot 2024-01-21 at 00.58.01.png |thumb|400px| Simulation - delivery vehicle in the middle, next to the storage facility.]]&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.londonperfect.com/plan-your-trip/practical-information/weather-seasons.php&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=File:Screenshot_2024-01-21_at_00.58.01.png&amp;diff=24915</id>
		<title>File:Screenshot 2024-01-21 at 00.58.01.png</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=File:Screenshot_2024-01-21_at_00.58.01.png&amp;diff=24915"/>
		<updated>2024-01-21T00:05:56Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24914</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24914"/>
		<updated>2024-01-21T00:03:12Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Method */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
The model for this project simulates the distribution process in a city (London) using an agent-based approach in NetLogo. In this model, agents represent different elements of the distribution network (delivery vehicle, customers, storage facility). External factors include weather conditions or customers availability.&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.londonperfect.com/plan-your-trip/practical-information/weather-seasons.php&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24913</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24913"/>
		<updated>2024-01-20T23:58:27Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Problem definition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city (London) with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.londonperfect.com/plan-your-trip/practical-information/weather-seasons.php&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24912</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24912"/>
		<updated>2024-01-20T23:57:29Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Sources */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;br /&gt;
* https://www.britannica.com/place/London/Transportation&lt;br /&gt;
*https://www.londonperfect.com/plan-your-trip/practical-information/weather-seasons.php&lt;br /&gt;
*https://www.holiday-weather.com/london/averages/&lt;br /&gt;
*https://content.tfl.gov.uk/travel-in-london-2023-road-traffic-trends-acc.pdf&lt;br /&gt;
*https://ccl.northwestern.edu/netlogo/docs/programming.html&lt;br /&gt;
*https://logistiko.eu/help/goods-delivery-procedure&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24885</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24885"/>
		<updated>2024-01-20T22:18:08Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;br /&gt;
&lt;br /&gt;
=Sources=&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24884</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24884"/>
		<updated>2024-01-20T22:17:23Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: /* Problem definition */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
This project explores the optimization of delivery times for distribution vehicles in a city with a complex and challenging logistics environment. This study focuses on key variables that impact delivery efficiency, such as traffic congestion, weather conditions, variability in package handling, and scenarios of unavailability of recipients. The aim is to provide insights and strategies for businesses to enhance their urban distribution operations, making this research relevant for both academic and practical applications in urban logistics.&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24867</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24867"/>
		<updated>2024-01-20T17:05:08Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24866</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24866"/>
		<updated>2024-01-20T17:04:55Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Introduction&lt;br /&gt;
&lt;br /&gt;
'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24865</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24865"/>
		<updated>2024-01-20T17:04:45Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Introduction&lt;br /&gt;
&lt;br /&gt;
'''Title:''' Simulation of product distribution&lt;br /&gt;
&lt;br /&gt;
'''Author:''' Lucia Pavlíková&lt;br /&gt;
&lt;br /&gt;
'''Method:''' Agent-based model&lt;br /&gt;
&lt;br /&gt;
'''Tool:''' NetLogo&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=WS_2023/2024&amp;diff=24864</id>
		<title>WS 2023/2024</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=WS_2023/2024&amp;diff=24864"/>
		<updated>2024-01-20T17:01:44Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Semestral papers from winter term 2023/2024. Please, put here links to the pages with your paper. First you need to have your [[Assignments WS 2023/2024|assignment approved]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Simulation of pandemic spread: [[Simulation of pandemic spread]], Daniel Kopecký, [[User:Kopd05|Kopd05]] ([[User talk:Kopd05|talk]]) 22:32, 16 January 2024 (CET)&lt;br /&gt;
*Aquatic ecosystem simulation: [[Aquatic ecosystem simulation]], Daria Tutynina, [[User:DariaTut|DariaTut]] ([[User talk:DariaTut|talk]]) 17:17, 19 January 2024 (CET)&lt;br /&gt;
*Space Junk: [[Space Junk]], Adam Valtr, [[User:Adamvaltr|vala18(AdamValtr)]] ([[User talk:Adamvaltr|talk]]) 14:16, 20 January 2024 (CET)&lt;br /&gt;
*Simulation of product distribution: [[Simulation of product distribution]], Lucia Pavlíková, [[User:LuciaPavlikova|pavl08(LuciaPavlikova)]] ([[User talk:pavl08|talk]]) 17:59, 20 January 2024 (CET)&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24863</id>
		<title>Simulation of product distribution</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Simulation_of_product_distribution&amp;diff=24863"/>
		<updated>2024-01-20T17:00:57Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: Created page with &amp;quot;Introduction  =Problem definition=  =Method=  =Model=  =Results=  =Conclusion=  =Code=&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Introduction&lt;br /&gt;
&lt;br /&gt;
=Problem definition=&lt;br /&gt;
&lt;br /&gt;
=Method=&lt;br /&gt;
&lt;br /&gt;
=Model=&lt;br /&gt;
&lt;br /&gt;
=Results=&lt;br /&gt;
&lt;br /&gt;
=Conclusion=&lt;br /&gt;
&lt;br /&gt;
=Code=&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=WS_2023/2024&amp;diff=24862</id>
		<title>WS 2023/2024</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=WS_2023/2024&amp;diff=24862"/>
		<updated>2024-01-20T17:00:34Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Semestral papers from winter term 2023/2024. Please, put here links to the pages with your paper. First you need to have your [[Assignments WS 2023/2024|assignment approved]]&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
*Simulation of pandemic spread: [[Simulation of pandemic spread]], Daniel Kopecký, [[User:Kopd05|Kopd05]] ([[User talk:Kopd05|talk]]) 22:32, 16 January 2024 (CET)&lt;br /&gt;
*Aquatic ecosystem simulation: [[Aquatic ecosystem simulation]], Daria Tutynina, [[User:DariaTut|DariaTut]] ([[User talk:DariaTut|talk]]) 17:17, 19 January 2024 (CET)&lt;br /&gt;
*Space Junk: [[Space Junk]], Adam Valtr, [[User:Adamvaltr|vala18(AdamValtr)]] ([[User talk:Adamvaltr|talk]]) 14:16, 20 January 2024 (CET)&lt;br /&gt;
*Simulation of product distribution: [[Simulation of product distribution]], Lucia Pavlíková, [[User:LuciaPavlikova|pavl08(LuciaPavlikova)]] ([[User talk:LuciaPavlikova|talk]]) 17:59, 20 January 2024 (CET)&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Assignments_WS_2023/2024&amp;diff=24750</id>
		<title>Assignments WS 2023/2024</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Assignments_WS_2023/2024&amp;diff=24750"/>
		<updated>2023-12-23T22:27:49Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Ambox&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
Please, put here your assignments. Do not forget to sign them. You can use &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt; (four tildas) for an automatic signature. Use Show preview in order to check the result before your final sumbition.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Ambox&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
Please, strive to formulate your assignment carefully. We expect an adequate effort to formulate the assignment as it is your semestral paper. Do not forget that your main goal is a research paper. It means your simulation model must generate the results that are specific, measurable and verifiable. Think twice how you will develop your model, which entities you will use, draw a model diagram, consider what you will measure. No sooner than when you have a good idea about the model, submit your assignment. And of course, read [[How to deal with the simulation assignment|How to deal with the simulation assignment]].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Ambox&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
Topics on gambling, cards, etc. are not welcome.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Ambox&lt;br /&gt;
| type  = content&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
In order to avoid possible confusion, please, check if you have added '''approved''' in bold somewhere in our comment under your submission. If there is no '''approved''', it means the assignment was not approved yet.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Ambox&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
'''Criteria for evaluation of the simulation proposal'''&lt;br /&gt;
&lt;br /&gt;
The proposal must contain:&lt;br /&gt;
*What you will simulate&lt;br /&gt;
*The goal of the simulation (what you analyze - i.e. not &amp;quot;to simulate balloon factory&amp;quot;, but what problem should the simulation solve).&lt;br /&gt;
*Who would actually use such simulation (example of such user) and how would it help him&lt;br /&gt;
*What method and simulation environment you plan to use. Choose only from the development environments that we have used in the course.&lt;br /&gt;
*What variables will be incorporated&lt;br /&gt;
*What variables will be random&lt;br /&gt;
*What exact data you will base values of your variables on&lt;br /&gt;
*(In case of Monte Carlo) What exact data you will base your determination of probability distribution of your random variables on&lt;br /&gt;
*What exact data you will base your formulas in the simulation (simulation behavior) on &lt;br /&gt;
&lt;br /&gt;
'''If any of the above points are missing from the simulation proposal, the proposal is considered incomplete. Unless the proposal contains all of the above points it will not be evaluated at all (and therefore cannot be approved).'''&lt;br /&gt;
&lt;br /&gt;
# Is it clear from the proposed assignment how the simulation will work?&lt;br /&gt;
# Does the simulation make sense?&lt;br /&gt;
# Is the simulation model complex enough to simulate credibly the real-world phenomenon that the simulation tries to simulate?&lt;br /&gt;
# Is the data used real and relevant for the real-world phenomenon that the simulation tries to simulate?&lt;br /&gt;
# Is the simulation feasible? (in given time by the course)&lt;br /&gt;
&lt;br /&gt;
'''If the answer to any of the above points is no, you need to improve your proposal. Don't wait for us to tell you so - you're wasting your time.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kopd05 - Simulation of pandemic spread ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*The aim of the simulation will be to investigate the spread of different viruses, according to their coefficient of spread, recovery or mortality.&lt;br /&gt;
*The simulation can be used by epidemiologists to study the spread of viruses and predict the evolution of a pandemic.&lt;br /&gt;
*The simulation will be developed using the NetLogo agent-based model&lt;br /&gt;
*The following variables will be included in the simulation:&lt;br /&gt;
**Virus spread rate&lt;br /&gt;
**Chance of recovery of the individual&lt;br /&gt;
**Risk of death&lt;br /&gt;
**Number of individuals&lt;br /&gt;
**Number of people infected&lt;br /&gt;
**% of immune individuals (random)&lt;br /&gt;
**Vaccination rate&lt;br /&gt;
**isImmune&lt;br /&gt;
**isInfected&lt;br /&gt;
**isVaccinated&lt;br /&gt;
**ChanceofCure (random)&lt;br /&gt;
&lt;br /&gt;
* Data can be based on real virus data or can be set individually.  &amp;lt;br&amp;gt;For example, the spread of a virus will be based on the reproduction number of R (can be looked up on the internet) &lt;br /&gt;
&lt;br /&gt;
* Everything will be based on freely available online data related to the topic, virus, etc.&lt;br /&gt;
&lt;br /&gt;
[[User:Kopd05|Kopd05]] ([[User talk:Kopd05|talk]]) 21:02, 12 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''This course is in English. We accept English versions only.''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]])&lt;br /&gt;
:: Very general. Please, specify in deep. What kind(s) of viruses, how will you model the population, how should it look like, etc. etc. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:15, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Tutd00 - Aquatic ecosystem simulation ==&lt;br /&gt;
&lt;br /&gt;
*The simulation is inspired by the classic &amp;quot;predator and prey&amp;quot; model. The goal is to model the behavior of fish, plants and predators in the generated aquatic environment.&lt;br /&gt;
*The simulation will be developed using the NetLogo - Agent based model&lt;br /&gt;
*The following variables will be in the simulation:&lt;br /&gt;
** The water temperature&lt;br /&gt;
** Pollution level&lt;br /&gt;
** Number of fish&lt;br /&gt;
** Number of sharks&lt;br /&gt;
** Number of plants&lt;br /&gt;
** Time of death of fish and shark (random)&lt;br /&gt;
** Fish and shark breeding time (random, but only after feeding)&lt;br /&gt;
** and also variables that depend on the basic ones: number of dead fish and sharks, number of plants eaten&lt;br /&gt;
&lt;br /&gt;
* The user has the option to set the number of fish, plants, sharks, water temperature and pollution level when starting the simulation.&lt;br /&gt;
* The rules: Cold water temperatures accelerate the rate of reproduction of predators, while warm water speeds up the rate of reproduction of fish.High water pollution slows down the reproduction of fish and sharks, but speeds up the growth of plants. The user can change settings during the simulation.&lt;br /&gt;
* This simulation allows the user to investigate how different parameter configurations affect ecosystem stability and dynamics and could be modified and used to model real aquatic systems.&lt;br /&gt;
* The data used in the simulation is based on real sources dedicated to the topic of aquatic systems (example: https://www.nalms.org/wp-content/uploads/2018/09/31-2-5.pdf), but will be implemented in a simplified form.&lt;br /&gt;
&lt;br /&gt;
[[User:DariaTut|DariaTut]] ([[User talk:DariaTut|talk]]) 10:47, 18 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''This course is in English. We accept English versions only.''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:58, 19 December 2023 (CET)&lt;br /&gt;
:'''Edited''' [[User:DariaTut|DariaTut]] ([[User talk:DariaTut|talk]]) 20:27, 19 December 2023 (CET)&lt;br /&gt;
:: Predator-prey is one of the most widely implemented models. Hence, you should suggest something what make your implementation special and new. What is the added value compared to the predator-prey? [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:19, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:: The simulation uniquely models a predator-prey scenario in a water-based ecosystem, incorporating both agent interactions and environmental conditions like water temperature and pollution. I have never seen a simulation on this topic anywhere.&lt;br /&gt;
:: '''To make the simulation more unique, I will add three types of fish and three types of plants, with each fish having its preferences in plants. The fish that prefers a wider range of plants will have better survival chances. This will allow users to explore and fine-tune the ideal balance for maximizing ecological diversity and understand how to sustain it.''' [[User:DariaTut|DariaTut]] ([[User talk:DariaTut|talk]]) 19:39, 20 December 2023 (CET)&lt;br /&gt;
::: All right. Please, stick to the real data. '''Approved'''. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 20:31, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Kubs09 - Simulation of Passenger Behavior at the Main Train Station  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Topic: Passenger behavior when boarding trains at the entire Main Train Station&lt;br /&gt;
*Utilization: This could be utilized, for instance, by Czech Railways/main station administrators to better adjust trains and their arrival positions.&lt;br /&gt;
*Method: Agent-based modelling, Netlogo&lt;br /&gt;
*Variables:&lt;br /&gt;
**Number of passengers&lt;br /&gt;
**Number of trains&lt;br /&gt;
**Passengers positions&lt;br /&gt;
**Timetable (train departures/arrivals)&lt;br /&gt;
**Delays (random)&lt;br /&gt;
**isCollision&lt;br /&gt;
**isDelay(random)&lt;br /&gt;
&lt;br /&gt;
* Sources: For this simulation, predominantly sources from Google Scholar would be used, or scientific articles found in the E-library of VSE.&lt;br /&gt;
&lt;br /&gt;
[[User:Kubs09|Kubs09]] ([[User talk:Kubs09|talk]]) 20:35, 19 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''This course is in English. We accept English versions only.''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:58, 19 December 2023 (CET)&lt;br /&gt;
:'''Edited.'''&lt;br /&gt;
:: This could be a good simulation. I would expect you will try to obtain data from Czech Railways maily, etc. How the simulation should look like specifically? [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:21, 20 December 2023 (CET)&lt;br /&gt;
'''I would try to obtain some data from Czech railways if possible. I was thinking of modelling the train platforms on main station (1-7), would research for the positions of the trains in the station and how people react to different train placements or if they prefer to move into different wagons if the one chosen is full.''' [[User:Kubs09|Kubs09]] ([[User talk:Kubs09|talk]]) 21:35, 20 December 2023 (CET)&lt;br /&gt;
:OK, to be honest, I perhaps don't understand it well. What is the purpose of the simulation? You will simulate the positions of trains for what? In order to optimize how people get to the trains? It is still not clear to me. I even don't see any citations that usually help me to get familiar with the problem, but you don't have any. Please, elaborate on it. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 23:19, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Vysj06 - Simulation of Agricultural Production and Climate Change  ==&lt;br /&gt;
&lt;br /&gt;
*Objective of the simulation: To model the impact of climate change on agricultural production, including soil fertility, crop yields, and irrigation.&lt;br /&gt;
*Usage: To provide farmers, scientists, and policymakers with tools for better planning and adaptation to climate changes.&lt;br /&gt;
*Method: Agent-based modeling, using NetLogo.&lt;br /&gt;
*Variables:&lt;br /&gt;
**Types of crops (grains, vegetables, fruits).&lt;br /&gt;
**Soil conditions and their changes.&lt;br /&gt;
**Amount and distribution of precipitation.&lt;br /&gt;
**Temperature changes.&lt;br /&gt;
**Irrigation methods and their efficiency.&lt;br /&gt;
&lt;br /&gt;
*Data: Based on real climate and agricultural data, including historical trends and forecasts. Option to configure parameters.&lt;br /&gt;
*Output: The simulation will provide users with the ability to visualize and understand the impact of various climate scenarios on agricultural production and possible adaptation strategies.&lt;br /&gt;
&lt;br /&gt;
[[User:Vysj06|Vysj06]] ([[User talk:Vysj06|talk]]) 21:25, 19 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''This course is in English. We accept English versions only.''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:59, 19 December 2023 (CET)&lt;br /&gt;
:'''Edited'''&lt;br /&gt;
:: This could be a good model, but, please, specify it deeper. How it should look like? What questions specifically will you solve? [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:22, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''Edit:''' The model will consist of fields that contain crops and data about the soil condition. Over time, the climate (temperature, precipitation) will change based on the data input at the beginning of the simulation, and this will have a certain impact on the yields and soil quality for further cultivation. Thus, it will simulate the development of farming possibilities on the fields according to climate change. It will answer questions about how significant an impact a change in precipitation or temperature over several years can have on the cultivation of various crops. [[User:Vysj06|Vysj06]] ([[User talk:Vysj06|talk]]) 20:32, 20 December 2023 (CET)&lt;br /&gt;
::: I understand it. But did you do a preliminary research? How you will e.g. measure the soil quality? What types of adaptation strategies do you plan to test? Etc. etc. Be specific, please. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 20:49, 20 December 2023 (CET)&lt;br /&gt;
:'''Edit:''' I did some research. To measure soil quality I can use indicators like moisture, pH, nutrients, and organic matter, as discussed in study &amp;quot;Climate Change and Agriculture: A Review of Impacts and Adaptations&amp;quot;​​. This study also highlights the importance of adaptations such as developing more resilient crop varieties and optimizing irrigation systems in response to climate changes. Additional relevant information on the impacts of climate change on soil health and its chemical and biological properties is discussed in the study &amp;quot;Impact of Climate Change on Soil Health&amp;quot; from Science International, emphasizing changes in microbial activity, acidity, and nutrient availability in soil.&lt;br /&gt;
*https://openknowledge.worldbank.org/entities/publication/a4373f71-f7b9-57c3-a66d-cf3f6a121c73&lt;br /&gt;
*https://scialert.net/fulltext/?doi=sciintl.2016.51.73&lt;br /&gt;
[[User:Vysj06|Vysj06]] ([[User talk:Vysj06|talk]]) 21:30, 20 December 2023 (CET)&lt;br /&gt;
:I am still not entirely convinced this topic is specific enough. It could happen that you will have a nice, working model, but providing completely useless results, what would have a serious impact on the evaluation. The solution of the problem is critical, not the model. But if you will be able to provide meaningful outputs, it is fine. '''Approved'''. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 23:07, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Doba00 - Factors that influence beer fermentation  ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
*Simulation: This simulation will focus on addressing external and internal factors that have an effect on beer fermentation and influence alcohol percentage in the final product. &lt;br /&gt;
** Can be used by brewery makers in the food industry to better evaluate beer-making conditions in order to make preferred outcomes of alcohol levels.&lt;br /&gt;
*Incorporated variables: &lt;br /&gt;
**temperature, &lt;br /&gt;
**yeast type, &lt;br /&gt;
**gravity of the wort, &lt;br /&gt;
**carbon dioxide production, &lt;br /&gt;
**cooling, &lt;br /&gt;
**yeast reuse&lt;br /&gt;
&lt;br /&gt;
*Goal: The simulation aims to analyze factors affecting the beer fermentation process and evaluate the best conditions for getting preferred outcomes in alcohol percentage in the final product.&lt;br /&gt;
&lt;br /&gt;
*Method: Vensim&lt;br /&gt;
&lt;br /&gt;
*Data: &lt;br /&gt;
**https://www.phind.com/search?cache=uu8fcm0sqdc1fyznvi0o0rhx&amp;amp;fbclid=IwAR30Y-m8maeJI3WFcW-fLvqTlRov_63mfnCGPxC9RiANZQbkQaYNO8MDl0M&lt;br /&gt;
**https://www.researchgate.net/publication/284725490_Biochemistry_of_beer_fermentation&lt;br /&gt;
**chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/http://ucitelchemie.upol.cz/materialy/vkpch/vyroba_piva_text_pro_ucitele.pdf&lt;br /&gt;
**https://grainfather.com/beer-fermentation-process/#:~:text=Typically%20the%20cooler%20the%20temperature,unwanted%20attributes%20in%20the%20beer.&lt;br /&gt;
&lt;br /&gt;
*Author: [[User:Doba00|Doba00]] ([[User talk:Doba00|talk]]) 16:25, 19 December 2023 (CET)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
::Please provide us with the reference to particular data, you wil base your simulation on. How exactly will your simulation work? How will you simulate the dynamics of food prices in the food industry? From what data you will derive the formulas neccesary for it? [[User:Oleg.Svatos|Oleg.Svatos]] ([[User talk:Oleg.Svatos|talk]]) 17:17, 19 December 2023 (CET)&lt;br /&gt;
:: '''Edited'''. After a thorough consideration, I have decided to change the topic completely. I hope it is more suitable now. [[User:Doba00|Doba00]] ([[User talk:Doba00|talk]]) 15:51, 20 December 2023 (CET)&lt;br /&gt;
:::: '''Approved'''[[User:Oleg.Svatos|Oleg.Svatos]] ([[User talk:Oleg.Svatos|talk]]) 20:15, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Tata05 - Simulation of the Ocean Carbon Uptake and Atmospheric Carbon Dioxide  ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
*Problem definition: I want to simulate the process of the Life cycle of processing carbon dioxide from the atmosphere and increasing the stored carbon dioxide on the ocean floor. This process influences ocean acidification and affects the entire climate. The ocean absorbs carbon dioxide from the atmosphere wherever air meets water. Regarding scientists oceans absorb 30% of our emissions, driven by a huge carbon pump.&lt;br /&gt;
*Method: Agent-based simulation, NetLogo.&lt;br /&gt;
*Variabels:&lt;br /&gt;
**Solar Energy&lt;br /&gt;
**Atmospheric CO2&lt;br /&gt;
**Changes in temperature&lt;br /&gt;
**Change in water acidity&lt;br /&gt;
**CO2 dissolving&lt;br /&gt;
**Carbon capture and storage&lt;br /&gt;
*Resource: Information from National Oceanic and Atmospheric Administration, Nasa Global Climate, https://www.soest.hawaii.edu/oceanography/faculty/zeebe_files/Publications/ZeebeWolfEnclp07.pdf&lt;br /&gt;
&lt;br /&gt;
[[User:Tata05| Tata05]] ([[User talk:Tata05|talk]]) 16:46, 19 December 2023 (CET)&lt;br /&gt;
::Please provide us with the reference to literature with formulas you will base your simulation on. Without it, it is impossible to evaluate wheather the simulation will make sense. [[User:Oleg.Svatos|Oleg.Svatos]] ([[User talk:Oleg.Svatos|talk]]) 17:13, 19 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
::Reference: https://www.soest.hawaii.edu/oceanography/faculty/zeebe_files/Publications/ZeebeWolfEnclp07.pdf&lt;br /&gt;
:'''Edited''' [[User:Tata05|Tata05]] ([[User talk:Tata05|Tata05]]) 21:49, 19 December 2023 (CET)&lt;br /&gt;
:: My opinion is that this could be rather a good model for systems dynamics. What do you think, Oleg? [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:25, 20 December 2023 (CET)&lt;br /&gt;
::: Agreed. For Vensim '''Approved''' [[User:Oleg.Svatos|Oleg.Svatos]] ([[User talk:Oleg.Svatos|talk]]) 20:16, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
==akee00== Urban Traffic flow and Pollution Control in Prague ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
*Primary objective: To analyze the impact of different traffic management strategies on urban traffic flow and air pollution levels in Prague. &lt;br /&gt;
*Problem to solve: Determining the most effective traffic management strategy that minimizes traffic congestion and reduces air pollution in the city of Prague. &lt;br /&gt;
*Context: With growing urban populations, traffic congestion and pollution have become critical issues. This simulation aims to explore how various traffic control measures can alleviate these problems. &lt;br /&gt;
*Method and Simulation Environment:&lt;br /&gt;
**Agent based Modelling &lt;br /&gt;
**Simulation Tool: Netlogo. &lt;br /&gt;
*Environment Setup: A simulated urban area with a grid of streets, traffic signals, vehicles, and pollution indicators. &lt;br /&gt;
*Variables and Data:&lt;br /&gt;
*Random variables:&lt;br /&gt;
**Vehicle breakdowns, &lt;br /&gt;
**Driver behaviour: route choice and speed variability &lt;br /&gt;
**Traffic incidents&lt;br /&gt;
**Weather conditions&lt;br /&gt;
**Vehicle emission rates. &lt;br /&gt;
*Incorporated (deterministic) variables:&lt;br /&gt;
**Vehicle agents: count, types&lt;br /&gt;
**Traffic signal agents: signal timing, adaptive signals&lt;br /&gt;
**Pollution measurement: Baseline emission levels, Air quality index&lt;br /&gt;
**Traffic Management Strategies&lt;br /&gt;
**Road layout.&lt;br /&gt;
*Data source:&lt;br /&gt;
**Traffic and transportation data for Prague from praha.eu &lt;br /&gt;
*Expected outcome: The simulation should reveal the most effective traffic management strategies for reducing congestion and pollution. By comparing these results with real-world data, urban planners can make informed decisions to improve traffic flow and air quality in Prague. &lt;br /&gt;
&lt;br /&gt;
: This is generally a&lt;br /&gt;
&lt;br /&gt;
: This is generally a good topic, however the scope you suggest is really large and you would be hardly able to deliver results. Limit the model reasonably, e.g. choose just a limited area or limit the model different way. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 20:04, 19 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== vala18 - Space Junk: a satelite/debris collision simulator ==&lt;br /&gt;
&lt;br /&gt;
* I would like to simulate a movement of satellites and space debris (AKA space junk) in a subsection of earths orbit (represented as 2D plane), where the satellites move on predetermined trajectories, but the junk's motion is somewhat randomized. If debris collides with another debris, it changes direction and creates little bit more debris, if debris collides with a satelite, the satelite is destroyed and a lot of debris is created. Then I would run the simulation to calculate a meantime between collisions based on starting conditions, such as the number of satellites, debris density and debris multiplication (how many pieces of additional debris collisions create).&lt;br /&gt;
* Space debris poses a significant issue due to the growing amount of defunct satellites, spent rocket stages, and fragments in Earth's orbit. The escalating debris increases collision risks, jeopardizing operational satellites and future space missions. This problem threatens space infrastructure, exacerbates space congestion, and raises the specter of generating even more fragments through collisions, potentially creating a self-sustaining cycle of space debris proliferation. Addressing this issue is crucial to ensuring the sustainability of space activities and preventing long-term consequences for Earth's orbital environment and space exploration. Proposed simulator could help two show and calculate conditions uder which such a self-sustaining debris proliferation arises; albeit with a simplified model, and hopefully educate about the aforementioned issue.&lt;br /&gt;
* NetLogo - agent based modeling (two types of agents: satellites and debris)&lt;br /&gt;
** The model will make the following simplifications:&lt;br /&gt;
*** subsection of Earth's orbit will be represented as a 2D &amp;quot;map&amp;quot; of fixed size (pixels) forming a grid &lt;br /&gt;
*** objects (satellites and debris) can move on the map only in 8 distinct directions&lt;br /&gt;
*** all objects move at the same speed (one pixel per turn)&lt;br /&gt;
*** objects are squares; the minimal size is 1x1 pixel, then 2x2 pixels, etc... &lt;br /&gt;
*** when objects collide the resulting number of debris is a random integer between 1 and the sum of sizes (pixels) of colliding objects.&lt;br /&gt;
*** mass of objects is proportional to their size, i.e. 1 (pixel) = 1 unit of mass&lt;br /&gt;
*** all objects follow Newton's laws of motion&lt;br /&gt;
* Variables for starting conditions&lt;br /&gt;
** map size&lt;br /&gt;
** number of satellites&lt;br /&gt;
** number of debris&lt;br /&gt;
** starting position and direction of objects&lt;br /&gt;
* Variables of agents (satellites and debris)&lt;br /&gt;
** size&lt;br /&gt;
** mass&lt;br /&gt;
** direction&lt;br /&gt;
* In order to simulate realistic scenarios - Data from NASA and other relevant studies regarding density of debris and number of satellites in orbit will be obtained to inform the starting conditions of the proposed model. Namely, I plan to use data obtained and published by:&lt;br /&gt;
**[https://orbitaldebris.jsc.nasa.gov/|NASA ORBITAL DEBRIS PROGRAM OFFICE]&lt;br /&gt;
**[https://platform.leolabs.space/visualization|LEOLABS Low Earth Orbit Visualization]&lt;br /&gt;
&lt;br /&gt;
[[User:Adamvaltr|vala18(AdamValtr)]] ([[User talk:Adamvaltr|talk]]) 16:57, 20 December 2023 (CET)&lt;br /&gt;
: '''Approved''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:26, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== pavl08 - Climate Change Simulation ==&lt;br /&gt;
* I would like to simulate climate change in a certain area - how it affected the nature, plant and animal species, temperature and the people living in the area&lt;br /&gt;
**the simulation will demonstrate, what can happen to a certain area of our Earth if we do or don’t take action and slow down the climate change &lt;br /&gt;
**the simulation will be developed in NetLogo - agent based model&lt;br /&gt;
**variables:&lt;br /&gt;
***temperature &lt;br /&gt;
***the year&lt;br /&gt;
***level of &amp;quot;planet destruction&amp;quot;&lt;br /&gt;
***number of people&lt;br /&gt;
***number of trees&lt;br /&gt;
***number of animal species&lt;br /&gt;
***(there might be other variables added based on the development of the simulation)&lt;br /&gt;
**the year and planet destruction level will be chosen by the player&lt;br /&gt;
**the number of people will be calculated from the year the player chooses and the “planet destruction” parameter - if the parameter is moderate, the number of people will be high, if the “planet destruction” is low or high, there will be a lot of people &lt;br /&gt;
**temperature can affect the number of animal species, number of trees will be random&lt;br /&gt;
**the simulation will try to demonstrate what will happen to our planet in future based on our decisions now &lt;br /&gt;
**it can be used as a tool for informing people about the issue and the consequences of our actions to the future&lt;br /&gt;
**the sources for data will be used these for example: https://www.unesco.org/en/climate-change/education, https://www.ipcc.ch/reports/, https://climate.nasa.gov/&lt;br /&gt;
:Very general and too complex. Systems dynamic is much better for this problem. You should define some particular problem, much more detailed. Mention specific resources, papers, not general links. I suggest to find something different. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 23:12, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
I thought about something different - '''Simulation of product distribution'''&lt;br /&gt;
*the simulation will be about how products are distributed in London for one company (I chose London because I was able to find data about its transport and weather)&lt;br /&gt;
*it could help new companies trying to figure out how to most effectively  distribute products between either storage facilities or their stores in London - however it can be later used in other cities as well&lt;br /&gt;
*the simulation will be developed in NetLogo - agent based model&lt;br /&gt;
*variables:&lt;br /&gt;
**number of cars/trucks&lt;br /&gt;
**storage facilities, stores, company&lt;br /&gt;
**transport nodes&lt;br /&gt;
**time of delivery, expenses&lt;br /&gt;
**external factors (weather) - will be random&lt;br /&gt;
*variables such as number of cars/trucks, number of storage facilities and stores will be chosen by the user&lt;br /&gt;
*data about transport in London: https://tfl.gov.uk/corporate/publications-and-reports/travel-in-london-reports, https://tfl.gov.uk/info-for/open-data-users/our-open-data, &lt;br /&gt;
*data about weather in UK: https://www.metoffice.gov.uk/research/cli&lt;br /&gt;
mate/maps-and-data/historic-station-data&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
	<entry>
		<id>http://www.simulace.info/index.php?title=Assignments_WS_2023/2024&amp;diff=24746</id>
		<title>Assignments WS 2023/2024</title>
		<link rel="alternate" type="text/html" href="http://www.simulace.info/index.php?title=Assignments_WS_2023/2024&amp;diff=24746"/>
		<updated>2023-12-20T20:38:57Z</updated>

		<summary type="html">&lt;p&gt;Pavl08: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Ambox&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
Please, put here your assignments. Do not forget to sign them. You can use &amp;lt;nowiki&amp;gt;~~~~&amp;lt;/nowiki&amp;gt; (four tildas) for an automatic signature. Use Show preview in order to check the result before your final sumbition.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Ambox&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
Please, strive to formulate your assignment carefully. We expect an adequate effort to formulate the assignment as it is your semestral paper. Do not forget that your main goal is a research paper. It means your simulation model must generate the results that are specific, measurable and verifiable. Think twice how you will develop your model, which entities you will use, draw a model diagram, consider what you will measure. No sooner than when you have a good idea about the model, submit your assignment. And of course, read [[How to deal with the simulation assignment|How to deal with the simulation assignment]].&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Ambox&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
Topics on gambling, cards, etc. are not welcome.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Ambox&lt;br /&gt;
| type  = content&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
In order to avoid possible confusion, please, check if you have added '''approved''' in bold somewhere in our comment under your submission. If there is no '''approved''', it means the assignment was not approved yet.&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
{{Ambox&lt;br /&gt;
| text  = &amp;lt;div&amp;gt;&lt;br /&gt;
'''Criteria for evaluation of the simulation proposal'''&lt;br /&gt;
&lt;br /&gt;
The proposal must contain:&lt;br /&gt;
*What you will simulate&lt;br /&gt;
*The goal of the simulation (what you analyze - i.e. not &amp;quot;to simulate balloon factory&amp;quot;, but what problem should the simulation solve).&lt;br /&gt;
*Who would actually use such simulation (example of such user) and how would it help him&lt;br /&gt;
*What method and simulation environment you plan to use. Choose only from the development environments that we have used in the course.&lt;br /&gt;
*What variables will be incorporated&lt;br /&gt;
*What variables will be random&lt;br /&gt;
*What exact data you will base values of your variables on&lt;br /&gt;
*(In case of Monte Carlo) What exact data you will base your determination of probability distribution of your random variables on&lt;br /&gt;
*What exact data you will base your formulas in the simulation (simulation behavior) on &lt;br /&gt;
&lt;br /&gt;
'''If any of the above points are missing from the simulation proposal, the proposal is considered incomplete. Unless the proposal contains all of the above points it will not be evaluated at all (and therefore cannot be approved).'''&lt;br /&gt;
&lt;br /&gt;
# Is it clear from the proposed assignment how the simulation will work?&lt;br /&gt;
# Does the simulation make sense?&lt;br /&gt;
# Is the simulation model complex enough to simulate credibly the real-world phenomenon that the simulation tries to simulate?&lt;br /&gt;
# Is the data used real and relevant for the real-world phenomenon that the simulation tries to simulate?&lt;br /&gt;
# Is the simulation feasible? (in given time by the course)&lt;br /&gt;
&lt;br /&gt;
'''If the answer to any of the above points is no, you need to improve your proposal. Don't wait for us to tell you so - you're wasting your time.'''&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Kopd05 - Simulation of pandemic spread ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*The aim of the simulation will be to investigate the spread of different viruses, according to their coefficient of spread, recovery or mortality.&lt;br /&gt;
*The simulation can be used by epidemiologists to study the spread of viruses and predict the evolution of a pandemic.&lt;br /&gt;
*The simulation will be developed using the NetLogo agent-based model&lt;br /&gt;
*The following variables will be included in the simulation:&lt;br /&gt;
**Virus spread rate&lt;br /&gt;
**Chance of recovery of the individual&lt;br /&gt;
**Risk of death&lt;br /&gt;
**Number of individuals&lt;br /&gt;
**Number of people infected&lt;br /&gt;
**% of immune individuals (random)&lt;br /&gt;
**Vaccination rate&lt;br /&gt;
**isImmune&lt;br /&gt;
**isInfected&lt;br /&gt;
**isVaccinated&lt;br /&gt;
**ChanceofCure (random)&lt;br /&gt;
&lt;br /&gt;
* Data can be based on real virus data or can be set individually.  &amp;lt;br&amp;gt;For example, the spread of a virus will be based on the reproduction number of R (can be looked up on the internet) &lt;br /&gt;
&lt;br /&gt;
* Everything will be based on freely available online data related to the topic, virus, etc.&lt;br /&gt;
&lt;br /&gt;
[[User:Kopd05|Kopd05]] ([[User talk:Kopd05|talk]]) 21:02, 12 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''This course is in English. We accept English versions only.''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]])&lt;br /&gt;
:: Very general. Please, specify in deep. What kind(s) of viruses, how will you model the population, how should it look like, etc. etc. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:15, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Tutd00 - Aquatic ecosystem simulation ==&lt;br /&gt;
&lt;br /&gt;
*The simulation is inspired by the classic &amp;quot;predator and prey&amp;quot; model. The goal is to model the behavior of fish, plants and predators in the generated aquatic environment.&lt;br /&gt;
*The simulation will be developed using the NetLogo - Agent based model&lt;br /&gt;
*The following variables will be in the simulation:&lt;br /&gt;
** The water temperature&lt;br /&gt;
** Pollution level&lt;br /&gt;
** Number of fish&lt;br /&gt;
** Number of sharks&lt;br /&gt;
** Number of plants&lt;br /&gt;
** Time of death of fish and shark (random)&lt;br /&gt;
** Fish and shark breeding time (random, but only after feeding)&lt;br /&gt;
** and also variables that depend on the basic ones: number of dead fish and sharks, number of plants eaten&lt;br /&gt;
&lt;br /&gt;
* The user has the option to set the number of fish, plants, sharks, water temperature and pollution level when starting the simulation.&lt;br /&gt;
* The rules: Cold water temperatures accelerate the rate of reproduction of predators, while warm water speeds up the rate of reproduction of fish.High water pollution slows down the reproduction of fish and sharks, but speeds up the growth of plants. The user can change settings during the simulation.&lt;br /&gt;
* This simulation allows the user to investigate how different parameter configurations affect ecosystem stability and dynamics and could be modified and used to model real aquatic systems.&lt;br /&gt;
* The data used in the simulation is based on real sources dedicated to the topic of aquatic systems (example: https://www.nalms.org/wp-content/uploads/2018/09/31-2-5.pdf), but will be implemented in a simplified form.&lt;br /&gt;
&lt;br /&gt;
[[User:DariaTut|DariaTut]] ([[User talk:DariaTut|talk]]) 10:47, 18 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''This course is in English. We accept English versions only.''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:58, 19 December 2023 (CET)&lt;br /&gt;
:'''Edited''' [[User:DariaTut|DariaTut]] ([[User talk:DariaTut|talk]]) 20:27, 19 December 2023 (CET)&lt;br /&gt;
:: Predator-prey is one of the most widely implemented models. Hence, you should suggest something what make your implementation special and new. What is the added value compared to the predator-prey? [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:19, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:: The simulation uniquely models a predator-prey scenario in a water-based ecosystem, incorporating both agent interactions and environmental conditions like water temperature and pollution. I have never seen a simulation on this topic anywhere.&lt;br /&gt;
:: '''To make the simulation more unique, I will add three types of fish and three types of plants, with each fish having its preferences in plants. The fish that prefers a wider range of plants will have better survival chances. This will allow users to explore and fine-tune the ideal balance for maximizing ecological diversity and understand how to sustain it.''' [[User:DariaTut|DariaTut]] ([[User talk:DariaTut|talk]]) 19:39, 20 December 2023 (CET)&lt;br /&gt;
::: All right. Please, stick to the real data. '''Approved'''. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 20:31, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Kubs09 - Simulation of Passenger Behavior at the Main Train Station  ==&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
*Topic: Passenger behavior when boarding trains at the entire Main Train Station&lt;br /&gt;
*Utilization: This could be utilized, for instance, by Czech Railways/main station administrators to better adjust trains and their arrival positions.&lt;br /&gt;
*Method: Agent-based modelling, Netlogo&lt;br /&gt;
*Variables:&lt;br /&gt;
**Number of passengers&lt;br /&gt;
**Number of trains&lt;br /&gt;
**Passengers positions&lt;br /&gt;
**Timetable (train departures/arrivals)&lt;br /&gt;
**Delays (random)&lt;br /&gt;
**isCollision&lt;br /&gt;
**isDelay(random)&lt;br /&gt;
&lt;br /&gt;
* Sources: For this simulation, predominantly sources from Google Scholar would be used, or scientific articles found in the E-library of VSE.&lt;br /&gt;
&lt;br /&gt;
[[User:Kubs09|Kubs09]] ([[User talk:Kubs09|talk]]) 20:35, 19 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''This course is in English. We accept English versions only.''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:58, 19 December 2023 (CET)&lt;br /&gt;
:'''Edited.'''&lt;br /&gt;
:: This could be a good simulation. I would expect you will try obtain data from Czech Railways maily, etc. How the simulation should look like specifically? [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:21, 20 December 2023 (CET)&lt;br /&gt;
'''I would try to obtain some data from Czech railways if possible. I was thinking of modelling the train platforms on main station (1-7), would research for the positions of the trains in the station and how people react to different train placements or if they prefer to move into different wagons if the one chosen is full.''' [[User:Kubs09|Kubs09]] ([[User talk:Kubs09|talk]]) 21:35, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Vysj06 - Simulation of Agricultural Production and Climate Change  ==&lt;br /&gt;
&lt;br /&gt;
*Objective of the simulation: To model the impact of climate change on agricultural production, including soil fertility, crop yields, and irrigation.&lt;br /&gt;
*Usage: To provide farmers, scientists, and policymakers with tools for better planning and adaptation to climate changes.&lt;br /&gt;
*Method: Agent-based modeling, using NetLogo.&lt;br /&gt;
*Variables:&lt;br /&gt;
**Types of crops (grains, vegetables, fruits).&lt;br /&gt;
**Soil conditions and their changes.&lt;br /&gt;
**Amount and distribution of precipitation.&lt;br /&gt;
**Temperature changes.&lt;br /&gt;
**Irrigation methods and their efficiency.&lt;br /&gt;
&lt;br /&gt;
*Data: Based on real climate and agricultural data, including historical trends and forecasts. Option to configure parameters.&lt;br /&gt;
*Output: The simulation will provide users with the ability to visualize and understand the impact of various climate scenarios on agricultural production and possible adaptation strategies.&lt;br /&gt;
&lt;br /&gt;
[[User:Vysj06|Vysj06]] ([[User talk:Vysj06|talk]]) 21:25, 19 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''This course is in English. We accept English versions only.''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:59, 19 December 2023 (CET)&lt;br /&gt;
:'''Edited'''&lt;br /&gt;
:: This could be a good model, but, please, specify it deeper. How it should look like? What questions specifically will you solve? [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:22, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
:'''Edit:''' The model will consist of fields that contain crops and data about the soil condition. Over time, the climate (temperature, precipitation) will change based on the data input at the beginning of the simulation, and this will have a certain impact on the yields and soil quality for further cultivation. Thus, it will simulate the development of farming possibilities on the fields according to climate change. It will answer questions about how significant an impact a change in precipitation or temperature over several years can have on the cultivation of various crops. [[User:Vysj06|Vysj06]] ([[User talk:Vysj06|talk]]) 20:32, 20 December 2023 (CET)&lt;br /&gt;
::: I understand it. But did you do a preliminary research? How you will e.g. measure the soil quality? What types of adaptation strategies do you plan to test? Etc. etc. Be specific, please. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 20:49, 20 December 2023 (CET)&lt;br /&gt;
:'''Edit:''' I did some research. To measure soil quality I can use indicators like moisture, pH, nutrients, and organic matter, as discussed in study &amp;quot;Climate Change and Agriculture: A Review of Impacts and Adaptations&amp;quot;​​. This study also highlights the importance of adaptations such as developing more resilient crop varieties and optimizing irrigation systems in response to climate changes. Additional relevant information on the impacts of climate change on soil health and its chemical and biological properties is discussed in the study &amp;quot;Impact of Climate Change on Soil Health&amp;quot; from Science International, emphasizing changes in microbial activity, acidity, and nutrient availability in soil.&lt;br /&gt;
*https://openknowledge.worldbank.org/entities/publication/a4373f71-f7b9-57c3-a66d-cf3f6a121c73&lt;br /&gt;
*https://scialert.net/fulltext/?doi=sciintl.2016.51.73&lt;br /&gt;
[[User:Vysj06|Vysj06]] ([[User talk:Vysj06|talk]]) 21:30, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Doba00 - Factors that influence beer fermentation  ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
*Simulation: This simulation will focus on addressing external and internal factors that have an effect on beer fermentation and influence alcohol percentage in the final product. &lt;br /&gt;
** Can be used by brewery makers in the food industry to better evaluate beer-making conditions in order to make preferred outcomes of alcohol levels.&lt;br /&gt;
*Incorporated variables: &lt;br /&gt;
**temperature, &lt;br /&gt;
**yeast type, &lt;br /&gt;
**gravity of the wort, &lt;br /&gt;
**carbon dioxide production, &lt;br /&gt;
**cooling, &lt;br /&gt;
**yeast reuse&lt;br /&gt;
&lt;br /&gt;
*Goal: The simulation aims to analyze factors affecting the beer fermentation process and evaluate the best conditions for getting preferred outcomes in alcohol percentage in the final product.&lt;br /&gt;
&lt;br /&gt;
*Method: Vensim&lt;br /&gt;
&lt;br /&gt;
*Data: &lt;br /&gt;
**https://www.phind.com/search?cache=uu8fcm0sqdc1fyznvi0o0rhx&amp;amp;fbclid=IwAR30Y-m8maeJI3WFcW-fLvqTlRov_63mfnCGPxC9RiANZQbkQaYNO8MDl0M&lt;br /&gt;
**https://www.researchgate.net/publication/284725490_Biochemistry_of_beer_fermentation&lt;br /&gt;
**chrome-extension://efaidnbmnnnibpcajpcglclefindmkaj/http://ucitelchemie.upol.cz/materialy/vkpch/vyroba_piva_text_pro_ucitele.pdf&lt;br /&gt;
**https://grainfather.com/beer-fermentation-process/#:~:text=Typically%20the%20cooler%20the%20temperature,unwanted%20attributes%20in%20the%20beer.&lt;br /&gt;
&lt;br /&gt;
*Author: [[User:Doba00|Doba00]] ([[User talk:Doba00|talk]]) 16:25, 19 December 2023 (CET)&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;br /&gt;
::Please provide us with the reference to particular data, you wil base your simulation on. How exactly will your simulation work? How will you simulate the dynamics of food prices in the food industry? From what data you will derive the formulas neccesary for it? [[User:Oleg.Svatos|Oleg.Svatos]] ([[User talk:Oleg.Svatos|talk]]) 17:17, 19 December 2023 (CET)&lt;br /&gt;
:: '''Edited'''. After a thorough consideration, I have decided to change the topic completely. I hope it is more suitable now. [[User:Doba00|Doba00]] ([[User talk:Doba00|talk]]) 15:51, 20 December 2023 (CET)&lt;br /&gt;
:::: '''Approved'''[[User:Oleg.Svatos|Oleg.Svatos]] ([[User talk:Oleg.Svatos|talk]]) 20:15, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== Tata05 - Simulation of the Ocean Carbon Uptake and Atmospheric Carbon Dioxide  ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
*Problem definition: I want to simulate the process of the Life cycle of processing carbon dioxide from the atmosphere and increasing the stored carbon dioxide on the ocean floor. This process influences ocean acidification and affects the entire climate. The ocean absorbs carbon dioxide from the atmosphere wherever air meets water. Regarding scientists oceans absorb 30% of our emissions, driven by a huge carbon pump.&lt;br /&gt;
*Method: Agent-based simulation, NetLogo.&lt;br /&gt;
*Variabels:&lt;br /&gt;
**Solar Energy&lt;br /&gt;
**Atmospheric CO2&lt;br /&gt;
**Changes in temperature&lt;br /&gt;
**Change in water acidity&lt;br /&gt;
**CO2 dissolving&lt;br /&gt;
**Carbon capture and storage&lt;br /&gt;
*Resource: Information from National Oceanic and Atmospheric Administration, Nasa Global Climate, https://www.soest.hawaii.edu/oceanography/faculty/zeebe_files/Publications/ZeebeWolfEnclp07.pdf&lt;br /&gt;
&lt;br /&gt;
[[User:Tata05| Tata05]] ([[User talk:Tata05|talk]]) 16:46, 19 December 2023 (CET)&lt;br /&gt;
::Please provide us with the reference to literature with formulas you will base your simulation on. Without it, it is impossible to evaluate wheather the simulation will make sense. [[User:Oleg.Svatos|Oleg.Svatos]] ([[User talk:Oleg.Svatos|talk]]) 17:13, 19 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
::Reference: https://www.soest.hawaii.edu/oceanography/faculty/zeebe_files/Publications/ZeebeWolfEnclp07.pdf&lt;br /&gt;
:'''Edited''' [[User:Tata05|Tata05]] ([[User talk:Tata05|Tata05]]) 21:49, 19 December 2023 (CET)&lt;br /&gt;
:: My opinion is that this could be rather a good model for systems dynamics. What do you think, Oleg? [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:25, 20 December 2023 (CET)&lt;br /&gt;
::: Agreed. For Vensim '''Approved''' [[User:Oleg.Svatos|Oleg.Svatos]] ([[User talk:Oleg.Svatos|talk]]) 20:16, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
==akee00== Urban Traffic flow and Pollution Control in Prague ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div&amp;gt;&lt;br /&gt;
*Primary objective: To analyze the impact of different traffic management strategies on urban traffic flow and air pollution levels in Prague. &lt;br /&gt;
*Problem to solve: Determining the most effective traffic management strategy that minimizes traffic congestion and reduces air pollution in the city of Prague. &lt;br /&gt;
*Context: With growing urban populations, traffic congestion and pollution have become critical issues. This simulation aims to explore how various traffic control measures can alleviate these problems. &lt;br /&gt;
*Method and Simulation Environment:&lt;br /&gt;
**Agent based Modelling &lt;br /&gt;
**Simulation Tool: Netlogo. &lt;br /&gt;
*Environment Setup: A simulated urban area with a grid of streets, traffic signals, vehicles, and pollution indicators. &lt;br /&gt;
*Variables and Data:&lt;br /&gt;
*Random variables:&lt;br /&gt;
**Vehicle breakdowns, &lt;br /&gt;
**Driver behaviour: route choice and speed variability &lt;br /&gt;
**Traffic incidents&lt;br /&gt;
**Weather conditions&lt;br /&gt;
**Vehicle emission rates. &lt;br /&gt;
*Incorporated (deterministic) variables:&lt;br /&gt;
**Vehicle agents: count, types&lt;br /&gt;
**Traffic signal agents: signal timing, adaptive signals&lt;br /&gt;
**Pollution measurement: Baseline emission levels, Air quality index&lt;br /&gt;
**Traffic Management Strategies&lt;br /&gt;
**Road layout.&lt;br /&gt;
*Data source:&lt;br /&gt;
**Traffic and transportation data for Prague from praha.eu &lt;br /&gt;
*Expected outcome: The simulation should reveal the most effective traffic management strategies for reducing congestion and pollution. By comparing these results with real-world data, urban planners can make informed decisions to improve traffic flow and air quality in Prague. &lt;br /&gt;
&lt;br /&gt;
: This is generally a&lt;br /&gt;
&lt;br /&gt;
: This is generally a good topic, however the scope you suggest is really large and you would be hardly able to deliver results. Limit the model reasonably, e.g. choose just a limited area or limit the model different way. [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 20:04, 19 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== vala18 - Space Junk: a satelite/debris collision simulator ==&lt;br /&gt;
&lt;br /&gt;
* I would like to simulate a movement of satellites and space debris (AKA space junk) in a subsection of earths orbit (represented as 2D plane), where the satellites move on predetermined trajectories, but the junk's motion is somewhat randomized. If debris collides with another debris, it changes direction and creates little bit more debris, if debris collides with a satelite, the satelite is destroyed and a lot of debris is created. Then I would run the simulation to calculate a meantime between collisions based on starting conditions, such as the number of satellites, debris density and debris multiplication (how many pieces of additional debris collisions create).&lt;br /&gt;
* Space debris poses a significant issue due to the growing amount of defunct satellites, spent rocket stages, and fragments in Earth's orbit. The escalating debris increases collision risks, jeopardizing operational satellites and future space missions. This problem threatens space infrastructure, exacerbates space congestion, and raises the specter of generating even more fragments through collisions, potentially creating a self-sustaining cycle of space debris proliferation. Addressing this issue is crucial to ensuring the sustainability of space activities and preventing long-term consequences for Earth's orbital environment and space exploration. Proposed simulator could help two show and calculate conditions uder which such a self-sustaining debris proliferation arises; albeit with a simplified model, and hopefully educate about the aforementioned issue.&lt;br /&gt;
* NetLogo - agent based modeling (two types of agents: satellites and debris)&lt;br /&gt;
** The model will make the following simplifications:&lt;br /&gt;
*** subsection of Earth's orbit will be represented as a 2D &amp;quot;map&amp;quot; of fixed size (pixels) forming a grid &lt;br /&gt;
*** objects (satellites and debris) can move on the map only in 8 distinct directions&lt;br /&gt;
*** all objects move at the same speed (one pixel per turn)&lt;br /&gt;
*** objects are squares; the minimal size is 1x1 pixel, then 2x2 pixels, etc... &lt;br /&gt;
*** when objects collide the resulting number of debris is a random integer between 1 and the sum of sizes (pixels) of colliding objects.&lt;br /&gt;
*** mass of objects is proportional to their size, i.e. 1 (pixel) = 1 unit of mass&lt;br /&gt;
*** all objects follow Newton's laws of motion&lt;br /&gt;
* Variables for starting conditions&lt;br /&gt;
** map size&lt;br /&gt;
** number of satellites&lt;br /&gt;
** number of debris&lt;br /&gt;
** starting position and direction of objects&lt;br /&gt;
* Variables of agents (satellites and debris)&lt;br /&gt;
** size&lt;br /&gt;
** mass&lt;br /&gt;
** direction&lt;br /&gt;
* In order to simulate realistic scenarios - Data from NASA and other relevant studies regarding density of debris and number of satellites in orbit will be obtained to inform the starting conditions of the proposed model. Namely, I plan to use data obtained and published by:&lt;br /&gt;
**[https://orbitaldebris.jsc.nasa.gov/|NASA ORBITAL DEBRIS PROGRAM OFFICE]&lt;br /&gt;
**[https://platform.leolabs.space/visualization|LEOLABS Low Earth Orbit Visualization]&lt;br /&gt;
&lt;br /&gt;
[[User:Adamvaltr|vala18(AdamValtr)]] ([[User talk:Adamvaltr|talk]]) 16:57, 20 December 2023 (CET)&lt;br /&gt;
: '''Approved''' [[User:Tomáš|Tomáš]] ([[User talk:Tomáš|talk]]) 19:26, 20 December 2023 (CET)&lt;br /&gt;
&lt;br /&gt;
== pavl08 - Climate Change Simulation ==&lt;br /&gt;
* I would like to simulate climate change in a certain area - how it affected the nature, plant and animal species, temperature and the people living in the area&lt;br /&gt;
**the simulation will demonstrate, what can happen to a certain area of our Earth if we do or don’t take action and slow down the climate change &lt;br /&gt;
**the simulation will be developed in NetLogo - agent based model&lt;br /&gt;
**variables:&lt;br /&gt;
***temperature &lt;br /&gt;
***the year&lt;br /&gt;
***level of &amp;quot;planet destruction&amp;quot;&lt;br /&gt;
***number of people&lt;br /&gt;
***number of trees&lt;br /&gt;
***number of animal species&lt;br /&gt;
***(there might be other variables added based on the development of the simulation)&lt;br /&gt;
**the year and planet destruction level will be chosen by the player&lt;br /&gt;
**the number of people will be calculated from the year the player chooses and the “planet destruction” parameter - if the parameter is moderate, the number of people will be high, if the “planet destruction” is low or high, there will be a lot of people &lt;br /&gt;
**temperature can affect the number of animal species, number of trees will be random&lt;br /&gt;
**the simulation will try to demonstrate what will happen to our planet in future based on our decisions now &lt;br /&gt;
**it can be used as a tool for informing people about the issue and the consequences of our actions to the future&lt;br /&gt;
**the sources for data will be used these for example: https://www.unesco.org/en/climate-change/education, https://www.ipcc.ch/reports/, https://climate.nasa.gov/&lt;/div&gt;</summary>
		<author><name>Pavl08</name></author>
		
	</entry>
</feed>