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

Ft diffusion problem #4

Draft
wants to merge 49 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
e89d969
Enable CMake for MacOS
kkILSB Dec 11, 2023
d871bef
Fix example
kkILSB Dec 11, 2023
6e40ae9
Publish for debugging
kkILSB Jan 29, 2024
4b5cacd
Give two options for objective function and deleted old comments
jzwar Jan 30, 2024
443f5da
Deleted unused line of code
jzwar Feb 2, 2024
a3fd37c
Applied pre-commit for formatting
jzwar Feb 2, 2024
6c2fee8
Cleanup of files and renaming
jzwar Feb 2, 2024
b81e8f9
Some more cleanup
jzwar Feb 8, 2024
88e295b
Added a forward simulation as an example and made some more clean up …
jzwar Feb 8, 2024
cebd4ac
Updated gismo version
jzwar Feb 9, 2024
30e4e02
Precommit and deleted comments
jzwar Feb 9, 2024
fbb29a7
Modify example and exclude timer from py_elasticity
jzwar Feb 12, 2024
4e87ee7
initialise new files for diffusion problem
FSchwar Jan 23, 2024
1fdda9e
copy example files
FSchwar Jan 25, 2024
b26f376
renamed from diffusion to poisson, several first changes in files
FSchwar Feb 2, 2024
e37bf0f
Add Diffusion Problem to pygadjoints and forward simulation
jzwar Feb 18, 2024
d018895
Non-functioning commit -- Segfaults and unvalid expressions
jzwar Feb 20, 2024
47fe04d
Bugfix in Structural Mechanics (BCs)
jzwar Feb 20, 2024
9c67f1d
Finally functioning derivative of the bilinear form
jzwar Feb 24, 2024
80a46a2
Tested Bilinear form derivative
jzwar Feb 25, 2024
c8e48f7
Functioning Diffusion problem with source function
jzwar Feb 25, 2024
121d41a
Add more examples
jzwar Feb 26, 2024
9af36f0
Problem Fix for Parametersensitivities
jzwar Feb 26, 2024
52a9781
DSSTORE gitignore
jzwar Feb 26, 2024
10c634a
Bugfixes
jzwar Feb 26, 2024
b8f95f7
Compiler Warnings
jzwar Feb 28, 2024
b0678d3
Update Examples
jzwar Feb 28, 2024
7e6eddb
Update Examples
jzwar Feb 28, 2024
a5faa62
Refactored sensitivity calculation and modified geometry to reduce de…
jzwar Mar 2, 2024
390ba7c
Make 2D Example usable
jzwar Mar 6, 2024
e40d551
Plot iterations
jzwar Mar 6, 2024
7bb1b7f
Modification to the diffusion problem - needs updating of SlitProfile…
jzwar Mar 8, 2024
601786d
Minor changes to the plotting tool
jzwar Mar 8, 2024
8d666cb
Modification to optimization python frontends
jzwar Mar 8, 2024
dcfed5e
New Simplified Test case for extrusion geometry
jzwar Mar 10, 2024
ea98000
added nlopt as optimizer
FSchwar Mar 10, 2024
69fc648
New export format to plot with splinepy
jzwar Mar 10, 2024
8d1efc7
Add initial export to Slit-Profile-Example
jzwar Mar 10, 2024
f6d1dd1
Added inverse test case
jzwar Mar 29, 2024
cfdfb59
Bugfix in homogeneous example
jzwar Mar 30, 2024
2665272
Another bugfix - missing ()
jzwar Mar 30, 2024
4e6c768
Lower Tolerance, greater parameter space
jzwar Mar 31, 2024
72a7ab7
Find proper scaling parameters
jzwar Apr 1, 2024
b1aa81f
Test Alternative Flux-Function
jzwar Apr 1, 2024
a6162a0
Update backend - including bugfix on expressions
jzwar Apr 8, 2024
e602363
Added new Cantilever example
jzwar Apr 8, 2024
36568c6
Added all relevant test cases for first example
jzwar Apr 8, 2024
01106c3
Added second test case MBB
jzwar Apr 8, 2024
34aa2f2
Update Init Value
jzwar Apr 8, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,12 @@ docs/source/_generated
**/CMakeFiles/
**/Makefile
**/cmake_install.cmake

# Solution and input files
**/*.xml
**/ParaviewOutput
**/*.csv
**/results

# Mac users
**/.DS_Store
5 changes: 0 additions & 5 deletions examples/MicrostructureOptimization/__init__.py

This file was deleted.

235 changes: 0 additions & 235 deletions examples/MicrostructureOptimization/double_lattice_optimization.py

This file was deleted.

Loading