Skip to content

Commit e97a2cf

Browse files
Fixme: SIN HACK TO BE FIXED
1 parent 54bfc42 commit e97a2cf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

PySpice/Spice/HighLevelElement.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,8 @@ def format_spice_parameters(self):
129129
sin_part = join_list((self.offset, self.amplitude, self.frequency, self.delay, self.damping_factor))
130130
return join_list((
131131
'DC {}'.format(str_spice(self.dc_offset)),
132-
'AC SIN({})'.format(sin_part),
132+
# 'AC SIN({})'.format(sin_part), # Fixme: To be fixed
133+
'AC 1 SIN({})'.format(sin_part),
133134
))
134135

135136
####################################################################################################

0 commit comments

Comments
 (0)