hugary1995 / raccoon

Massively parallel FEM code for phase-field for fracture by Dolbow Lab at Duke University
https://hugary1995.github.io/raccoon
GNU Lesser General Public License v2.1
56 stars 44 forks source link

add LDLNucleationMicroForce with tests in surfing #159

Closed lyyc199586 closed 4 months ago

lyyc199586 commented 7 months ago

Start to implement the variational case of the nucleation model, see https://github.com/hugary1995/raccoon/issues/158#issue-2105908769.

Not test yet.

BoZeng1997 commented 7 months ago

@lyyc199586 can you give me commit permission?

remote: Permission to lyyc199586/raccoon.git denied to BoZeng1997.
fatal: unable to access 'https://github.com/lyyc199586/raccoon.git/': The requested URL returned error: 403
lyyc199586 commented 7 months ago

@lyyc199586 can you give me commit permission?

remote: Permission to lyyc199586/raccoon.git denied to BoZeng1997.
fatal: unable to access 'https://github.com/lyyc199586/raccoon.git/': The requested URL returned error: 403

added

BoZeng1997 commented 7 months ago

content for file run.sh

l=0.35
refine=3
filebase=nuc2024_l${l}h0.035
# rm -rf .jitcache/
nohup mpiexec -n 4 ~/projects/raccoon/raccoon-opt -i elasticity_ldl.i \
--color off --trap-fpe \
filebase=$filebase refine=$refine l=$l \
Executioner/fixed_point_rel_tol=1e-4 \
Executioner/fixed_point_abs_tol=1e-7 \
Executioner/end_time=0.3 \
> ${filebase}.out 2>&1 &
lyyc199586 commented 7 months ago

I have finished debugging, now h_correction is a bool option @BoZeng1997