We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I am looking at the docs and see that Function and Array also needs to be imported for the example to execute.
from shenfun import Basis, Function, Array N = 8 T = Basis(N, 'Chebyshev', bc=None)
Also, later on in the code right before Operators you need to import Dx for this code to work.
From the Multipdimensional part, one needs to import TensorProductSpace, define comm and also import grad.
In coupled problems, the line beginning with SD does not work since int is not scriptable.
This is as far as I have gotten now. Will try and look at the rest another time.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am looking at the docs and see that Function and Array also needs to be imported for the example to execute.
from shenfun import Basis, Function, Array
N = 8
T = Basis(N, 'Chebyshev', bc=None)
Also, later on in the code right before Operators you need to import Dx for this code to work.
From the Multipdimensional part, one needs to import TensorProductSpace, define comm and also import grad.
In coupled problems, the line beginning with SD does not work since int is not scriptable.
This is as far as I have gotten now. Will try and look at the rest another time.
The text was updated successfully, but these errors were encountered: