-
Notifications
You must be signed in to change notification settings - Fork 48
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
Question about the thermal thin_wall #28
Comments
I believe you are referring to an outdated example. Perhaps this newer one can be of some relevance to you. Also check this example for thermal-mechanical coupling. |
Thank you for your answer,I made the appropriate changes based on the code you provided, however a new error was reported as follows: Cell In[13], line 92, in ded_thin_wall() TypeError: init() got an unexpected keyword argument 'neumann_bc_info' |
I think you are using the old version of JAX-FEM (in the JAX-AM repo), which is discouraged. Please use the new version in this repo. |
You are using the right JAX-FEM version, but I think you are referring to an old JAX-FEM example. I saw "init() got an unexpected keyword argument 'neumann_bc_info'" - This seems to be from an old example. |
Hello everyone,
I've been exploring this code with a keen interest in solving thermoplastic problems. However, I've encountered a stumbling block while trying to work with the thin_wall. I'm facing a ModuleNotFoundError: as detailed below:
`
ModuleNotFoundError Traceback (most recent call last)
Cell In[1], line 10
7 import time
9 from jax_fem.generate_mesh import Mesh
---> 10 from jax_fem.core import FEM
11 from jax_fem.solver import solver
12 from jax_fem.utils import save_sol
ModuleNotFoundError: No module named 'jax_fem.core'
`
But I can't find the core file in jax-fem. I'm wondering if there's something I might miss. Any guidance or suggestions would be greatly appreciated!
The text was updated successfully, but these errors were encountered: