-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First definition of the abstract LTI types
- Loading branch information
Showing
2 changed files
with
33 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,25 @@ | ||
module lightrom_AbstractLTIsystems | ||
use LightKrylov | ||
implicit none | ||
include "dtypes.h" | ||
|
||
private | ||
|
||
!------------------------------------------------------- | ||
!----- ABSTRACT LTI SYSTEM TYPE DEFINITION ----- | ||
!------------------------------------------------------- | ||
|
||
!> General abstract type for general system. | ||
type, abstract, public :: abstract_dynamical_system | ||
end type abstract_dynamical_system | ||
|
||
!> Abstract continuous LTI system. | ||
type, extends(abstract_dynamical_system), abstract, public :: abstract_lti_system | ||
end type abstract_lti_system | ||
|
||
!> Abstract discrete LTI system. | ||
type, extends(abstract_dynamical_system), abstract, public :: abstract_dlti_system | ||
end type abstract_dlti_system | ||
|
||
contains | ||
end module lightrom_AbstractLTIsystems |
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
module lightrom_utils | ||
implicit none | ||
include "dtypes.h" | ||
|
||
private | ||
|
||
contains | ||
end module lightrom_utils |