-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Reintroduce soft, viscoelastic and rigid contact models
This reverts commit 9408f74.
- Loading branch information
1 parent
b0827b5
commit 7f0893f
Showing
5 changed files
with
2,077 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
from . import relaxed_rigid | ||
from . import relaxed_rigid, rigid, soft, visco_elastic | ||
from .common import ContactModel, ContactsParams | ||
from .relaxed_rigid import RelaxedRigidContacts, RelaxedRigidContactsParams | ||
from .rigid import RigidContacts, RigidContactsParams | ||
from .soft import SoftContacts, SoftContactsParams | ||
from .visco_elastic import ViscoElasticContacts, ViscoElasticContactsParams | ||
|
||
ContactParamsTypes = RelaxedRigidContactsParams | ||
ContactParamsTypes = ( | ||
SoftContactsParams | ||
| RigidContactsParams | ||
| RelaxedRigidContactsParams | ||
| ViscoElasticContactsParams | ||
) |
Oops, something went wrong.