0 votes
420 views
how can i set the number of iterations for a monte carlo simulation via IPC - I do not see this explicitly in the schema docs or in schema.py.

Thanks.
in openLCA by (720 points)
by (720 points)
Nevermind: Exception: 501: Calculation method MONTE_CARLO_SIMULATIONis not yet implemented

1 Answer

+1 vote
by (5.2k points)
selected by
 
Best answer

Once you get olca-ipc straightened out, you can use this to do Monte-Carlo analysis - https://github.com/GreenDelta/olca-ipc.py#monte-carlo-simulations

To more directly answer your question, the number of iterations using that method is defined within your python code. openLCA will just keep generating random values (and results) when you run client.next_simulation(simulator).

...