Skip to content

Commit 52cc12d

Browse files
committed
"created time domain file structure"
1 parent 50187ac commit 52cc12d

File tree

6 files changed

+30
-0
lines changed

6 files changed

+30
-0
lines changed

Diff for: simphony/time_domain/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Time Domain Simphony"""

Diff for: simphony/time_domain/pole_residue_model.py

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
class PoleResidueModel():
2+
def __init__(self) -> None:
3+
pass
4+
5+
6+
class CVFModel(PoleResidueModel):
7+
def __init__(self) -> None:
8+
pass
9+
10+
class CVFModelBaseband(PoleResidueModel):
11+
def __init__(self) -> None:
12+
pass
13+
14+
15+
class IIRModelBaseband(PoleResidueModel):
16+
def __init__(self) -> None:
17+
pass
18+
19+

Diff for: simphony/time_domain/quantum.py

Whitespace-only changes.

Diff for: simphony/time_domain/simulation.py

Whitespace-only changes.

Diff for: simphony/time_domain/time_system.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
class TimeSystem():
2+
def __init__(self) -> None:
3+
pass
4+

Diff for: simphony/time_domain/utils.py

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from simphony.time_domain import TimeSystem
2+
from simphony.time_domain import PoleResidueModel
3+
4+
def pole_residue_to_time_system(poe_residue_model: PoleResidueModel) -> TimeSystem:
5+
pass
6+

0 commit comments

Comments
 (0)