Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there any limitation for network size in ciw? #176

Closed
neetu5510 opened this issue Aug 5, 2020 · 4 comments
Closed

Is there any limitation for network size in ciw? #176

neetu5510 opened this issue Aug 5, 2020 · 4 comments

Comments

@neetu5510
Copy link

I am trying to simulate a network using ciw but it always gives the error 'module' object is not callable'. Can you explain why? I am taking 2 class of customers and trying to simulate a 13 node network. Is there some limitation on number of nodes for the network?

@geraintpalmer
Copy link
Member

Thanks @neetu5510
There is no limit on Network size, as long as it all fits in memory.

The error 'module' object is not callable' looks like a syntax error to me. Can you post the code?

@neetu5510
Copy link
Author

I am trying this code:
import ciw import numpy as np N=ciw.create_network( arrival_distributions= {'Class 0':[ciw.dists.Exponential(.1), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals()], 'Class 1':[ciw.dists.Exponential(.15), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals(), ciw.dists.NoArrivals()]}, service_distributions={'Class 0':[ciw.dists.Exponential(.5), ciw.dists.Exponential(.03), ciw.dists.Exponential(.025), ciw.dists.Exponential(.02), ciw.dists.Exponential(.021), ciw.dists.Exponential(.02), ciw.dists.Exponential(.019), ciw.dists.Exponential(.018), ciw.dists.Exponential(.015), ciw.dists.Exponential(.014), ciw.dists.Exponential(.012), ciw.dists.Exponential(.01), ciw.dists.Exponential(.09)], 'Class 1':[ciw.dists.Exponential(.06), ciw.dists.Exponential(.05), ciw.dists.Exponential(.045), ciw.dists.Exponential(.04), ciw.dists.Exponential(.035), ciw.dists.Exponential(.03), ciw.dists.Exponential(.025), ciw.dists.Exponential(.024), ciw.dists.Exponential(.023), ciw.dists.Exponential(.022), ciw.dists.Exponential(.02), ciw.dists.Exponential(.018), ciw.dists.Exponential(.015)]}, routing= {'Class 0':[[0,1,0,0,0,0,0,0,0,0,0,0,0], [0,0,0.1,0.2,0.1,0.02,0.04,0.08,0.05,0.03,0.08,0.1,0], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,0]], 'Class 1':[[0,1,0,0,0,0,0,0,0,0,0,0,0], [0,0,0.1,0.3,0.1,0.02,0.04,0.08,0.05,0.03,0.08,0.1,0], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,1], [0,0,0,0,0,0,0,0,0,0,0,0,0]], }, number_of_servers=[3,2,1,1,1,1,1,1,1,1,1,1,2] ) ciw.seed(2) Q=ciw.simulation(N) Q.simulate_until_max_time(1440)

@geraintpalmer
Copy link
Member

Hi @neetu5510

Your problem is the line Q=ciw.simulation(N). ciw.simualtion is a module. You want the object, so you need Q=ciw.Simulation(N).

With this change it should run.

@neetu5510
Copy link
Author

Hey..Thanks a lot...it worked..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants