-
Notifications
You must be signed in to change notification settings - Fork 91
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into sky130-dev
- Loading branch information
Showing
7 changed files
with
113 additions
and
68 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 |
---|---|---|
|
@@ -10,11 +10,11 @@ | |
# BUGS: --- | ||
# NOTES: --- | ||
# AUTHOR: Fahim Khan, [email protected] | ||
# MODIFIED: Rahul Paknikar, [email protected] | ||
# MAINTAINED: Rahul Paknikar, rahulp@cse.iitb.ac.in | ||
# Sumanto Kar, [email protected] | ||
# ORGANIZATION: eSim Team at FOSSEE, IIT Bombay | ||
# CREATED: Tuesday 24 February 2015 | ||
# REVISION: Monday 31 January 2022 | ||
# REVISION: Tuesday 13 September 2022 | ||
# ========================================================================= | ||
|
||
import os | ||
|
@@ -975,4 +975,7 @@ def main(args): | |
# Call main function | ||
if __name__ == '__main__': | ||
# Create and display the splash screen | ||
main(sys.argv) | ||
try: | ||
main(sys.argv) | ||
except Exception as err: | ||
print("Error: ", err) |
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
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
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
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 |
---|---|---|
|
@@ -10,10 +10,10 @@ | |
# BUGS: --- | ||
# NOTES: --- | ||
# AUTHOR: Fahim Khan, [email protected] | ||
# MODIFIED: Rahul Paknikar, [email protected] | ||
# MODIFIED: Rahul Paknikar, rahulp@cse.iitb.ac.in | ||
# ORGANIZATION: eSim Team at FOSSEE, IIT Bombay | ||
# CREATED: Wednesday 04 March 2015 | ||
# REVISION: Saturday 25 July 2020 | ||
# REVISION: Sunday 18 September 2022 | ||
# ========================================================================= | ||
|
||
import sys | ||
|
@@ -376,9 +376,9 @@ def callConvert(self): | |
if child.tag == "source": | ||
attr_source = child | ||
|
||
count = 1 | ||
count = 0 | ||
grand_child_count = 0 | ||
keys = list(obj_source.entry_var.keys()) | ||
entry_var_keys = list(obj_source.entry_var.keys()) | ||
|
||
for i in store_schematicInfo: | ||
tmp_check = 0 | ||
|
@@ -390,7 +390,7 @@ def callConvert(self): | |
for grand_child in child: | ||
grand_child.text = \ | ||
str(obj_source.entry_var | ||
[keys[grand_child_count]].text()) | ||
[entry_var_keys[grand_child_count]].text()) | ||
grand_child_count += 1 | ||
if tmp_check == 0: | ||
words = i.split(' ') | ||
|
@@ -406,102 +406,124 @@ def callConvert(self): | |
# attr_ac = ET.SubElement(attr_var, "ac") | ||
ET.SubElement( | ||
attr_var, "field1", name="Amplitude" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field2", name="Phase" | ||
).text = str(obj_source.entry_var[count].text()) | ||
count += 2 | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
elif words[len(words) - 1] == "dc": | ||
# attr_dc = ET.SubElement(attr_var, "dc") | ||
ET.SubElement( | ||
attr_var, "field1", name="Value" | ||
).text = str(obj_source.entry_var[count].text()) | ||
count += 2 | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
elif words[len(words) - 1] == "sine": | ||
# attr_sine = ET.SubElement(attr_var, "sine") | ||
ET.SubElement( | ||
attr_var, "field1", name="Offset Value" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field2", name="Amplitude" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field3", name="Frequency" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field4", name="Delay Time" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field5", name="Damping Factor" | ||
).text = str(obj_source.entry_var[count].text()) | ||
count += 2 | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
elif words[len(words) - 1] == "pulse": | ||
# attr_pulse=ET.SubElement(attr_var,"pulse") | ||
ET.SubElement( | ||
attr_var, "field1", name="Initial Value" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field2", name="Pulse Value" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field3", name="Delay Time" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field4", name="Rise Time" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field5", name="Fall Time" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field5", name="Pulse width" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field5", name="Period" | ||
).text = str(obj_source.entry_var[count].text()) | ||
count += 2 | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
elif words[len(words) - 1] == "pwl": | ||
# attr_pwl=ET.SubElement(attr_var,"pwl") | ||
ET.SubElement( | ||
attr_var, "field1", name="Enter in pwl format" | ||
).text = str(obj_source.entry_var[count].text()) | ||
count += 2 | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
elif words[len(words) - 1] == "exp": | ||
# attr_exp=ET.SubElement(attr_var,"exp") | ||
ET.SubElement( | ||
attr_var, "field1", name="Initial Value" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field2", name="Pulsed Value" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field3", name="Rise Delay Time" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field4", name="Rise Time Constant" | ||
).text = str(obj_source.entry_var[count].text()) | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field5", name="Fall TIme" | ||
).text = str(obj_source.entry_var[count].text()) | ||
attr_var, "field5", name="Fall Time" | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
ET.SubElement( | ||
attr_var, "field6", name="Fall Time Constant" | ||
).text = str(obj_source.entry_var[count].text()) | ||
count += 2 | ||
).text = str(obj_source.entry_var | ||
[entry_var_keys[count]].text()) | ||
count += 1 | ||
|
||
if check == 0: | ||
attr_model = ET.SubElement(attr_parent, "model") | ||
|
Oops, something went wrong.