Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Commit 19d3831

Browse files
committed
Update title
1 parent 2424ef8 commit 19d3831

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Quasistatic Fracture using Nonliner-Nonlocal Elastostatics with an Analytic Tangent Stiffness Matrix
1+
# Quasistatic Fracture using Nonliner-Nonlocal Elastostatics with an Explicit Tangent Stiffness Matrix
22

33
## Dependencies
44

hard/bondbased2D-plate-hard.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,12 @@ def __init__(self,h,delta_factor,iter):
5050

5151
self.nodes = np.array(self.nodes)
5252

53+
filehandler = open("bond-based-2d-plate-"+str(self.h)+"-"+str(self.delta_factor)+"-"+"-nodes-hard.npy", "wb")
54+
np.save(filehandler,self.nodes)
55+
56+
sys.exit(1)
57+
58+
5359
self.V = np.empty(len(self.nodes))
5460
self.V.fill(h*h)
5561

0 commit comments

Comments
 (0)