Workshop notebook

[1]:
import numpy as np
from polaris import Polaris
---------------------------------------------------------------------------
ModuleNotFoundError                       Traceback (most recent call last)
Cell In[1], line 2
      1 import numpy as np
----> 2 from polaris import Polaris

ModuleNotFoundError: No module named 'polaris'

Running a Polaris model

[2]:
pol = Polaris.from_dir("D:/workshops/itsc2025/toowoomba")

---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
Cell In[2], line 1
----> 1 pol = Polaris.from_dir("D:/workshops/itsc2025/toowoomba")

NameError: name 'Polaris' is not defined
[3]:
pol.run()
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)
Cell In[3], line 1
----> 1 pol.run()

NameError: name 'pol' is not defined