simulation

discrete event simulators for C++

Hi All, I am currently looking for a discrete event simulator written for C++. I did not find much on the web written specifically in OO-style; there are some, but outdated. Some others, such as Opnet, Omnet and ns3 are way to complicated for what I need to do and, besides, I need to simulate agent-based algorithms capable of simulating ...

2D grid water/liquid simulation (platformer tile based).

Hello. I have a grid based game (platformer) where I've based everything on tiles. I have tiles that are solid and liquid. I'm trying to find of a good way to make water tiles simulate water in a rough way. At the moment I have the current system: When a water tile is added above another water tile, it adds 1 to the water tile below. ...

Python Simulation: Total Website Traffic Qty Estimation using Personas Segments

Hi. I need to estimate future website traffic & conversion volume based on: 1) Baseline historical averages for 6 differing types of traffic segments 2) How each of those distinct visitor segments interacts with 5 unique content groups After searching the internet I've concluded modules exist that can easily be adapted to fit my as...

Gas Station Simulation: How to simulate Cars coming at random intervals?

The assignment is as follows: The gas station consists of 2 pumps. Each pump has a certain amount of fuel it can distribute. Cars arrive at random intervals and attempt to use one of two pumps: - If a pump is available and has fuel, the car is immediately allowed to use it. Each car requires a certain amount of fuel (random numbe...

Verlet integration bouncing

I am trying to learn Verlet integration, mainly because I'm bored, and want to spice up my normal "bouncing ball" learning exercise. I have a simple bouncing ball Canvas/HTML5 page at http://sandbox.electricgrey.com:8080/physics/. If you click on it you'll notice that the ball doesn't always bounce back to the same height. Sometimes it ...