Skip to content

Commit

Permalink
First definition of the abstract LTI types
Browse files Browse the repository at this point in the history
  • Loading branch information
loiseaujc committed Feb 9, 2024
1 parent 22d3588 commit 0cf7274
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
25 changes: 25 additions & 0 deletions src/AbstractLTIsystems.f90
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
8 changes: 8 additions & 0 deletions src/Utils.f90
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

0 comments on commit 0cf7274

Please sign in to comment.