Skip to content

Commit

Permalink
"created time domain file structure"
Browse files Browse the repository at this point in the history
  • Loading branch information
1400073 committed Oct 25, 2024
1 parent 50187ac commit 52cc12d
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 0 deletions.
1 change: 1 addition & 0 deletions simphony/time_domain/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
"""Time Domain Simphony"""
19 changes: 19 additions & 0 deletions simphony/time_domain/pole_residue_model.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
class PoleResidueModel():
def __init__(self) -> None:
pass


class CVFModel(PoleResidueModel):
def __init__(self) -> None:
pass

class CVFModelBaseband(PoleResidueModel):
def __init__(self) -> None:
pass


class IIRModelBaseband(PoleResidueModel):
def __init__(self) -> None:
pass


Empty file added simphony/time_domain/quantum.py
Empty file.
Empty file.
4 changes: 4 additions & 0 deletions simphony/time_domain/time_system.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
class TimeSystem():
def __init__(self) -> None:
pass

6 changes: 6 additions & 0 deletions simphony/time_domain/utils.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from simphony.time_domain import TimeSystem
from simphony.time_domain import PoleResidueModel

def pole_residue_to_time_system(poe_residue_model: PoleResidueModel) -> TimeSystem:
pass

0 comments on commit 52cc12d

Please sign in to comment.