-
Notifications
You must be signed in to change notification settings - Fork 75
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
Orthotropic heat conduction in shell elements #249
Comments
It looks like there was an oversight in how orthotropic properties are handled in the In the meantime, if you add E1 to your kwargs when instantiating your
|
That clarifies it. Thanks for the quick response. I will try and let you know how it goes. |
Could you attach your code and bdf model for reference. As of right now, I don't believe thermal elements are supported in the buckling eigenvalue solver. @gjkennedy can fact check me on this. If thermal buckling would be a desired feature, can you create a new issue for that specific topic? It'll make it easier for us to bookkeep that way |
The thermal analysis and buckling analysis comments are for different problems (Sorry for not creating a separate issue for buckling). The buckling analysis is done under mechanical loads as of now, for which I managed to fix the issue with my code. Getting back to the thermal analysis problem I am facing (for which this thread is), I have used the thermal plate example with Dirichlet BCs and defined E1=1 and kappa1=kappa2=kappa in analysis.py file. |
Thanks, for pointing this out. This was definitely a bug where kappa was never actually being saved in the MaterialProperties class. PR #252 should fix this issue |
That sounds great! Thanks for your effort in looking into this. |
Hi,
I believe the current version can handle heat conduction problems with isotropic thermal conductivities (kappa). Specifying kappa1 and kappa2 instead of kappa will resort to the predefined value of kappa in the code. Is there a way to use kappa1 and kappa2 in 2D and kappa1, kappa2 and kappa3 in 3D conduction problems?
Thanks,
Pranav
The text was updated successfully, but these errors were encountered: