Tagged Questions
The simpy tag has no wiki summary.
4
votes
1answer
69 views
How to document simulations with parallel processes?
I've been using the SimPy module for Python - that does Discrete Event Simulations. Now, the code has gotten fairly large now and there are quite a few processes occurring in parallel that interact ...
4
votes
3answers
699 views
Python, SimPy: How to generate a value from a triangular probability distribution?
I want to run a simulation that uses as parameter a value generated from a triangular probability distribution with lower limit A, mode B and and upper limit C. How can I generate this value in ...
1
vote
1answer
55 views
Release resource being held by another process
In SimPy, if I've process a, b and resource r and do:
yield request, self, r #request done in process a
How can I release the resource from process b?
yield release, a, r #release done in b (being ...
0
votes
2answers
48 views
global name error in SimPy
I am trying to simulate points moving in 2D which have a probability of dying at every step. I am trying to learn SimPy and this is my first programming experience. Why do I get this error? and how to ...
0
votes
2answers
60 views
Python, SimPy: Using yield inside functions
Helo, I'm building a relatively complex Discrete Event Simulation Model in SimPy.
When I try to put my yield statements inside functions, my program doesn't seem to work. Below shows an example.
...
0
votes
1answer
55 views
Unable to import SimPy
I am new to SimPy I used the easy_install to install SimPy module then on the command line I simply tried from SimPy.Simulation import * but I get the following error
Python 2.6.7 (r267:88850, Aug ...
0
votes
0answers
40 views
python SimPy default for requesting resource
The yield request function in SimPy: when customers are done with process A, they request the following process B but in what order: what is the python default for requesting a resource when I specify ...
0
votes
2answers
234 views
Importing my own modules in Google App Engine
I'm brand new to Google App Engine and have just been playing around with it, but for the life of me I don't understand how to import non-standard modules, and for that matter don't fully understand ...
0
votes
3answers
453 views
Why is this recursive statement wrong?
This is a bank simulation that takes into account 20 different serving lines with a single queue, customers arrive following an exponential rate and they are served during a time that follows a normal ...
0
votes
2answers
138 views
What is wrong with this SimPy installation?
Alright, I have tried a bunch of times the
python setup.py install
command from my command prompt, and this is what I'm getting:
SCREEN
And when trying this:
from SimPy.Simulation import *
on ...