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

Waldbrandsimulation #12

Open
klaussoft opened this issue Oct 13, 2022 · 1 comment
Open

Waldbrandsimulation #12

klaussoft opened this issue Oct 13, 2022 · 1 comment

Comments

@klaussoft
Copy link

klaussoft commented Oct 13, 2022

Hi,

die Waldbrandsimulation enthält noch einen Fehler. Ein Baum wird zufällig in Brand gesteckt, dieser brennt aber nicht ab, sondern steckt nur die Nachbarn in Brand. Dadurch brennt nichts mehr, wenn man die Brandwahrscheinlichkeit nahe 1, oder 1 setzt. Da stehen dann nur noch Bäume ohne Nachbarn und nichts brennt mehr.

Richtig wäre es so:
...
brand = set(rnd.sample(bäume, int(len(bäume)*BRAND)))
brand |= feuerwalze(bäume-brand, brand)
...

Leider gibt es noch ein weiteres Problem für die Zukunft. Python gibt eine Warnung aus, dass Sample zukünftig nicht mehr mit Sets umgehen kann.

@klaussoft
Copy link
Author

Das hatte immer noch nicht gepasst. Nun müsste es stimmen:
leer = fläche - bäume - brand
bäume |= set(rnd.sample(leer, int(len(leer)*WACHSTUM)))
brand = feuerwalze(bäume-brand, brand)
brand |= set(rnd.sample(bäume, int(len(bäume)*BRAND)))
bäume -= brand

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

1 participant