Skip to content

Commit

Permalink
Update August 2023
Browse files Browse the repository at this point in the history
  • Loading branch information
brainkz committed Aug 22, 2023
1 parent 4369d14 commit 4fcf3a1
Show file tree
Hide file tree
Showing 9 changed files with 95 additions and 44 deletions.
Binary file modified .DS_Store
Binary file not shown.
Binary file modified __pycache__/boiler_plate.cpython-39.pyc
Binary file not shown.
51 changes: 33 additions & 18 deletions boiler_plate.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,18 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Rassul Bairamkulov</title>
<title>Rassul Bairamkulov: Homepage</title>
<link rel="stylesheet" href="css/style.css">
<!-- based on https://cdn.simplecss.org/simple.css -->
</head>
'''

def make_header(append_str : str) -> str:
return f'''
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Rassul Bairamkulov | {append_str}</title>
<link rel="stylesheet" href="css/style.css">
<!-- based on https://cdn.simplecss.org/simple.css -->
</head>
Expand Down Expand Up @@ -82,10 +93,12 @@
'tcasi': 'IEEE Transactions on Circuits and Systems I: Regular Papers',
}
CONFERENCES = {
'glsvlsi': 'Proceedings of the ACM Great Lakes Symposium on VLSI',
'iscas': 'Proceedings of the IEEE International Symposium on Circuits and Systems',
'dac' : 'Proceedings of the ACM/IEEE Design Automation Conference',
'pemc' : 'Proceedings of the IEEE International Power Electronics and Motion Control Conference'
'vlsisoc23': 'Proceedings of the IEEE/IFIP International Conference on Very Large Scale Integration, Sharjah, United Arab Emirates',
'glsvlsi23': 'Proceedings of the ACM Great Lakes Symposium on VLSI, Knoxville, Tennessee',
'iscas20': 'Proceedings of the IEEE International Symposium on Circuits and Systems, Virtual',
'iscas18': 'Proceedings of the IEEE International Symposium on Circuits and Systems, Florence, Italy',
'dac21' : 'Proceedings of the ACM/IEEE Design Automation Conference, San Francisco, California',
'pemc' : 'Proceedings of the IEEE International Power Electronics and Motion Control Conference, Varna, Bulgaria'
}
BOOKS = {
'springer_cham' : 'Springer, Cham, Switzerland'
Expand All @@ -99,29 +112,31 @@
'EGF' : '<a href="http://www2.ece.rochester.edu/~friedman/">E. G. Friedman</a>',
'AR' : 'A. Ruderman',
'YLF' : 'Y. L. Familiant',
'ARoy' : 'A. Roy',
'ARoy': 'A. Roy',
'JSO' : 'J. S. Ochoa',
'KX' : 'K. Xu',
'MN' : 'M. Nagarajan',
'MP' : 'M. Popovich',
'TJ' : 'T. Jabbari',
'VS' : 'V. Srinivas',
'GDM' : '<a href="https://si2.epfl.ch/~demichel/">G. De Micheli</a>',
'ATC' : '<a href="https://aletempiac.github.io/">A. Tempia Calvino</a>',
}

PLAIN_NAMES = {
'me' : 'R. Bairamkulov',
'EGF' : 'E. G. Friedman',
'AR' : 'A. Ruderman',
'YLF' : 'Y. L. Familiant',
'ARoy' : 'A. Roy',
'JSO' : 'J. S. Ochoa',
'KX' : 'K. Xu',
'MN' : 'M. Nagarajan',
'MP' : 'M. Popovich',
'TJ' : 'T. Jabbari',
'VS' : 'V. Srinivas',
'GDM' : 'G. De Micheli',
'me' : 'R. Bairamkulov',
'EGF' : 'E. G. Friedman',
'AR' : 'A. Ruderman',
'YLF' : 'Y. L. Familiant',
'ARoy' : 'A. Roy',
'JSO' : 'J. S. Ochoa',
'KX' : 'K. Xu',
'MN' : 'M. Nagarajan',
'MP' : 'M. Popovich',
'TJ' : 'T. Jabbari',
'VS' : 'V. Srinivas',
'GDM' : 'G. De Micheli',
'ATC' : 'A. Tempia Calvino',
}

PRESENTATIONS = '''
Expand Down
8 changes: 8 additions & 0 deletions brainkz.github.io.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"folders": [
{
"path": "."
}
],
"settings": {}
}
16 changes: 11 additions & 5 deletions genpages.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@
from yaml import load, dump, Loader, Dumper
from requests.structures import CaseInsensitiveDict as CID
from boiler_plate import HOME, HEADER, BODY_HEADER, NAVBAR, FOOTER, SKIP, JOURNALS,\
CONFERENCES, JC, PLAIN_NAMES, FANCY_NAMES, MONTHS, ADDRESS, BIO, PRESENTATIONS, DISSERTATION, WELCOME
CONFERENCES, JC, PLAIN_NAMES, FANCY_NAMES, MONTHS, ADDRESS, BIO, \
PRESENTATIONS, DISSERTATION, WELCOME, make_header
from datetime import date
import os

Expand All @@ -28,6 +29,13 @@ def format_journal_conf(key, entry, is_journal):

ieee_str += '"' + entry["title"] + '," '
book = JC[entry['book']]

doi = entry["doi"]
if not doi:
book = f"To appear in {book}"
else:
bib_str += f'doi = "{doi}",'

ieee_str += f"<i>{book}</i>"
bib_str += f'{book_key} = "' + book + '",\n'
if not entry.get('published', True):
Expand All @@ -40,8 +48,6 @@ def format_journal_conf(key, entry, is_journal):
year = entry['year']
ieee_str += f"{year}."
bib_str += f'year = "{year}",\n'
doi = entry["doi"]
bib_str += f'doi = "{doi}",'
print(ieee_str)
print(bib_str.replace('\n','<br>&emsp;') + '<br>}')
return ieee_str, bib_str.replace('\n','<br>&emsp;') + '<br>}'
Expand Down Expand Up @@ -131,7 +137,7 @@ def format_list(file):
def make_pub(home=HOME):
book_str, jrnl_str, conf_str = format_list('papers/Paper_Config.yml')
with open(os.path.join(HOME,'pub.html'),'w') as f:
f.write(HEADER)
f.write(make_header("Publications"))
f.write(NAVBAR)
f.write(BODY_HEADER)
f.write(SKIP)
Expand All @@ -144,7 +150,7 @@ def make_pub(home=HOME):

def make_index(home=HOME):
with open(os.path.join(HOME,'index.html'),'w') as f:
f.write(HEADER)
f.write(make_header("Homepage"))
f.write(NAVBAR)
f.write(BODY_HEADER)
f.write(WELCOME)
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Rassul Bairamkulov</title>
<title>Rassul Bairamkulov | Homepage</title>
<link rel="stylesheet" href="css/style.css">
<!-- based on https://cdn.simplecss.org/simple.css -->
</head>
Expand Down
20 changes: 16 additions & 4 deletions papers/Paper_Config.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
vlsisoc23:
type: conf
book: vlsisoc23
authors:
- me
- ATC
- GDM
title: Synthesis of SFQ Circuits with Compound Gates
year: 2023
month: 10
pdf: "papers/VLSI_SoC_2023.pdf"
doi: ""
glsvlsi23:
type: conf
book: glsvlsi
book: glsvlsi23
authors:
- me
- GDM
Expand Down Expand Up @@ -100,7 +112,7 @@ truncated:
pdf: "papers/TCASI_Trunc.pdf"
dac_sprout:
type: conf
book: dac
book: dac21
authors:
- me
- ARoy
Expand All @@ -115,7 +127,7 @@ dac_sprout:
pdf: "papers/SPROUT_DAC.pdf"
routing:
type: conf
book: iscas
book: iscas20
authors:
- me
- ARoy
Expand All @@ -129,7 +141,7 @@ routing:
pdf: "papers/ISCAS_Routing.pdf"
versatile:
type: conf
book: iscas
book: iscas18
authors:
- me
- KX
Expand Down
Binary file added papers/VLSI_SoC_2023.pdf
Binary file not shown.
42 changes: 26 additions & 16 deletions pub.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<title>Rassul Bairamkulov</title>
<title>Rassul Bairamkulov | Publications</title>
<link rel="stylesheet" href="css/style.css">
<!-- based on https://cdn.simplecss.org/simple.css -->
</head>
Expand Down Expand Up @@ -40,7 +40,7 @@ <h2 id="book">Authored Book</h2>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/TCAD.2021.3123141">Publisher</a> <a href="papers/QuCTS.pdf">PDF</a>
</summary>
<span>@article{bairamkulov_tcad_qucts,<br>&emsp;author = "R. Bairamkulov and T. Jabbari and E. G. Friedman",<br>&emsp;journal = "IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems",<br>&emsp;title = "QuCTS - single flux Quantum Clock Tree Synthesis",<br>&emsp;year = "2022",<br>&emsp;doi = "10.1109/TCAD.2021.3123141",<br>}
<span>@article{bairamkulov_tcad_qucts,<br>&emsp;author = "R. Bairamkulov and T. Jabbari and E. G. Friedman",<br>&emsp;doi = "10.1109/TCAD.2021.3123141",journal = "IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems",<br>&emsp;title = "QuCTS - single flux Quantum Clock Tree Synthesis",<br>&emsp;year = "2022",<br>&emsp;<br>}
</span>
</details>
</p>
Expand All @@ -50,7 +50,7 @@ <h2 id="book">Authored Book</h2>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/TCAD.2021.3101411">Publisher</a> <a href="papers/SPROUT_TCAD.pdf">PDF</a>
</summary>
<span>@article{bairamkulov_tcad_sprout,<br>&emsp;author = "R. Bairamkulov and A. Roy and M. Nagarajan and V. Srinivas and E. G. Friedman",<br>&emsp;journal = "IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems",<br>&emsp;title = "SPROUT - Smart Power ROUting Tool for Board-Level Exploration and Prototyping",<br>&emsp;year = "2022",<br>&emsp;doi = "10.1109/TCAD.2021.3101411",<br>}
<span>@article{bairamkulov_tcad_sprout,<br>&emsp;author = "R. Bairamkulov and A. Roy and M. Nagarajan and V. Srinivas and E. G. Friedman",<br>&emsp;doi = "10.1109/TCAD.2021.3101411",journal = "IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems",<br>&emsp;title = "SPROUT - Smart Power ROUting Tool for Board-Level Exploration and Prototyping",<br>&emsp;year = "2022",<br>&emsp;<br>}
</span>
</details>
</p>
Expand All @@ -60,7 +60,7 @@ <h2 id="book">Authored Book</h2>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/TCAD.2019.2925397">Publisher</a> <a href="papers/TCAD_Exploration.pdf">PDF</a>
</summary>
<span>@article{bairamkulov_tcad_exploration,<br>&emsp;author = "R. Bairamkulov and K. Xu and M. Popovich and J. S. Ochoa and V. Srinivas and E. G. Friedman",<br>&emsp;journal = "IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems",<br>&emsp;title = "Power Delivery Exploration Methodology Based on Constrained Optimization",<br>&emsp;year = "2020",<br>&emsp;doi = "10.1109/TCAD.2019.2925397",<br>}
<span>@article{bairamkulov_tcad_exploration,<br>&emsp;author = "R. Bairamkulov and K. Xu and M. Popovich and J. S. Ochoa and V. Srinivas and E. G. Friedman",<br>&emsp;doi = "10.1109/TCAD.2019.2925397",journal = "IEEE Transactions on Computer-Aided Design of Integrated Circuits and Systems",<br>&emsp;title = "Power Delivery Exploration Methodology Based on Constrained Optimization",<br>&emsp;year = "2020",<br>&emsp;<br>}
</span>
</details>
</p>
Expand All @@ -70,7 +70,7 @@ <h2 id="book">Authored Book</h2>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/TCSI.2020.2985652">Publisher</a> <a href="papers/TCASI_Inf_Mirror.pdf">PDF</a>
</summary>
<span>@article{bairamkulov_mirror,<br>&emsp;author = "R. Bairamkulov and E. G. Friedman",<br>&emsp;journal = "IEEE Transactions on Circuits and Systems I: Regular Papers",<br>&emsp;title = "Effective Resistance of Finite Two-Dimensional Grids Based on Infinity Mirror Technique",<br>&emsp;year = "2020",<br>&emsp;doi = "10.1109/TCSI.2020.2985652",<br>}
<span>@article{bairamkulov_mirror,<br>&emsp;author = "R. Bairamkulov and E. G. Friedman",<br>&emsp;doi = "10.1109/TCSI.2020.2985652",journal = "IEEE Transactions on Circuits and Systems I: Regular Papers",<br>&emsp;title = "Effective Resistance of Finite Two-Dimensional Grids Based on Infinity Mirror Technique",<br>&emsp;year = "2020",<br>&emsp;<br>}
</span>
</details>
</p>
Expand All @@ -80,57 +80,67 @@ <h2 id="book">Authored Book</h2>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/TCSI.2019.2933749">Publisher</a> <a href="papers/TCASI_Trunc.pdf">PDF</a>
</summary>
<span>@article{bairamkulov_truncated,<br>&emsp;author = "R. Bairamkulov and E. G. Friedman",<br>&emsp;journal = "IEEE Transactions on Circuits and Systems I: Regular Papers",<br>&emsp;title = "Effective Resistance of Two-Dimensional Truncated Infinite Mesh Structures",<br>&emsp;year = "2019",<br>&emsp;doi = "10.1109/TCSI.2019.2933749",<br>}
<span>@article{bairamkulov_truncated,<br>&emsp;author = "R. Bairamkulov and E. G. Friedman",<br>&emsp;doi = "10.1109/TCSI.2019.2933749",journal = "IEEE Transactions on Circuits and Systems I: Regular Papers",<br>&emsp;title = "Effective Resistance of Two-Dimensional Truncated Infinite Mesh Structures",<br>&emsp;year = "2019",<br>&emsp;<br>}
</span>
</details>
</p><h2 id="conference">Conference papers </h2><a href=#up>Return to top</a>
<p>
<strong>R. Bairamkulov</strong> and <a href="https://si2.epfl.ch/~demichel/">G. De Micheli</a>, "Compound Logic Gates for Pipeline Depth Minimization in Single Flux Quantum Integrated Systems," <i>Proceedings of the ACM Great Lakes Symposium on VLSI</i>, 2023.
<strong>R. Bairamkulov</strong>, <a href="https://aletempiac.github.io/">A. Tempia Calvino</a> and <a href="https://si2.epfl.ch/~demichel/">G. De Micheli</a>, "Synthesis of SFQ Circuits with Compound Gates," <i>To appear in Proceedings of the IEEE/IFIP International Conference on Very Large Scale Integration, Sharjah, United Arab Emirates</i>, 2023.
<details>
<summary>
<u>Bibtex</u> <a href="https://doi.org/">Publisher</a> <a href="papers/VLSI_SoC_2023.pdf">PDF</a>
</summary>
<span>@inproceedings{bairamkulov_vlsisoc23,<br>&emsp;author = "R. Bairamkulov and A. Tempia Calvino and G. De Micheli",<br>&emsp;booktitle = "To appear in Proceedings of the IEEE/IFIP International Conference on Very Large Scale Integration, Sharjah, United Arab Emirates",<br>&emsp;title = "Synthesis of SFQ Circuits with Compound Gates",<br>&emsp;year = "2023",<br>&emsp;<br>}
</span>
</details>
</p>
<p>
<strong>R. Bairamkulov</strong> and <a href="https://si2.epfl.ch/~demichel/">G. De Micheli</a>, "Compound Logic Gates for Pipeline Depth Minimization in Single Flux Quantum Integrated Systems," <i>Proceedings of the ACM Great Lakes Symposium on VLSI, Knoxville, Tennessee</i>, 2023.
<details>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1145/3583781.3590287">Publisher</a> <a href="papers/RSFQ_GLSVLSI23.pdf">PDF</a>
</summary>
<span>@inproceedings{bairamkulov_glsvlsi23,<br>&emsp;author = "R. Bairamkulov and G. De Micheli",<br>&emsp;booktitle = "Proceedings of the ACM Great Lakes Symposium on VLSI",<br>&emsp;title = "Compound Logic Gates for Pipeline Depth Minimization in Single Flux Quantum Integrated Systems",<br>&emsp;year = "2023",<br>&emsp;doi = "10.1145/3583781.3590287",<br>}
<span>@inproceedings{bairamkulov_glsvlsi23,<br>&emsp;author = "R. Bairamkulov and G. De Micheli",<br>&emsp;doi = "10.1145/3583781.3590287",booktitle = "Proceedings of the ACM Great Lakes Symposium on VLSI, Knoxville, Tennessee",<br>&emsp;title = "Compound Logic Gates for Pipeline Depth Minimization in Single Flux Quantum Integrated Systems",<br>&emsp;year = "2023",<br>&emsp;<br>}
</span>
</details>
</p>
<p>
<strong>R. Bairamkulov</strong>, A. Roy, M. Nagarajan, V. Srinivas, and <a href="http://www2.ece.rochester.edu/~friedman/">E. G. Friedman</a>, "SPROUT - Smart Power ROUting Tool for Board-Level Exploration and Prototyping," <i>Proceedings of the ACM/IEEE Design Automation Conference</i>, 2021.
<strong>R. Bairamkulov</strong>, A. Roy, M. Nagarajan, V. Srinivas, and <a href="http://www2.ece.rochester.edu/~friedman/">E. G. Friedman</a>, "SPROUT - Smart Power ROUting Tool for Board-Level Exploration and Prototyping," <i>Proceedings of the ACM/IEEE Design Automation Conference, San Francisco, California</i>, 2021.
<details>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/DAC18074.2021.9586128">Publisher</a> <a href="papers/SPROUT_DAC.pdf">PDF</a>
</summary>
<span>@inproceedings{bairamkulov_dac_sprout,<br>&emsp;author = "R. Bairamkulov and A. Roy and M. Nagarajan and V. Srinivas and E. G. Friedman",<br>&emsp;booktitle = "Proceedings of the ACM/IEEE Design Automation Conference",<br>&emsp;title = "SPROUT - Smart Power ROUting Tool for Board-Level Exploration and Prototyping",<br>&emsp;year = "2021",<br>&emsp;doi = "10.1109/DAC18074.2021.9586128",<br>}
<span>@inproceedings{bairamkulov_dac_sprout,<br>&emsp;author = "R. Bairamkulov and A. Roy and M. Nagarajan and V. Srinivas and E. G. Friedman",<br>&emsp;doi = "10.1109/DAC18074.2021.9586128",booktitle = "Proceedings of the ACM/IEEE Design Automation Conference, San Francisco, California",<br>&emsp;title = "SPROUT - Smart Power ROUting Tool for Board-Level Exploration and Prototyping",<br>&emsp;year = "2021",<br>&emsp;<br>}
</span>
</details>
</p>
<p>
<strong>R. Bairamkulov</strong>, A. Roy, M. Nagarajan, V. Srinivas, and <a href="http://www2.ece.rochester.edu/~friedman/">E. G. Friedman</a>, "Graph-Based Power Network Routing for Board-Level High Performance Systems," <i>Proceedings of the IEEE International Symposium on Circuits and Systems</i>, 2020.
<strong>R. Bairamkulov</strong>, A. Roy, M. Nagarajan, V. Srinivas, and <a href="http://www2.ece.rochester.edu/~friedman/">E. G. Friedman</a>, "Graph-Based Power Network Routing for Board-Level High Performance Systems," <i>Proceedings of the IEEE International Symposium on Circuits and Systems, Virtual</i>, 2020.
<details>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/ISCAS45731.2020.9181140">Publisher</a> <a href="papers/ISCAS_Routing.pdf">PDF</a>
</summary>
<span>@inproceedings{bairamkulov_routing,<br>&emsp;author = "R. Bairamkulov and A. Roy and M. Nagarajan and V. Srinivas and E. G. Friedman",<br>&emsp;booktitle = "Proceedings of the IEEE International Symposium on Circuits and Systems",<br>&emsp;title = "Graph-Based Power Network Routing for Board-Level High Performance Systems",<br>&emsp;year = "2020",<br>&emsp;doi = "10.1109/ISCAS45731.2020.9181140",<br>}
<span>@inproceedings{bairamkulov_routing,<br>&emsp;author = "R. Bairamkulov and A. Roy and M. Nagarajan and V. Srinivas and E. G. Friedman",<br>&emsp;doi = "10.1109/ISCAS45731.2020.9181140",booktitle = "Proceedings of the IEEE International Symposium on Circuits and Systems, Virtual",<br>&emsp;title = "Graph-Based Power Network Routing for Board-Level High Performance Systems",<br>&emsp;year = "2020",<br>&emsp;<br>}
</span>
</details>
</p>
<p>
<strong>R. Bairamkulov</strong>, K. Xu, M. Popovich, J. S. Ochoa, V. Srinivas, and <a href="http://www2.ece.rochester.edu/~friedman/">E. G. Friedman</a>, "Versatile Framework for Power Delivery Exploration," <i>Proceedings of the IEEE International Symposium on Circuits and Systems</i>, 2018.
<strong>R. Bairamkulov</strong>, K. Xu, M. Popovich, J. S. Ochoa, V. Srinivas, and <a href="http://www2.ece.rochester.edu/~friedman/">E. G. Friedman</a>, "Versatile Framework for Power Delivery Exploration," <i>Proceedings of the IEEE International Symposium on Circuits and Systems, Florence, Italy</i>, 2018.
<details>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/ISCAS.2018.8351478">Publisher</a> <a href="papers/ISCAS_Exploration.pdf">PDF</a>
</summary>
<span>@inproceedings{bairamkulov_versatile,<br>&emsp;author = "R. Bairamkulov and K. Xu and M. Popovich and J. S. Ochoa and V. Srinivas and E. G. Friedman",<br>&emsp;booktitle = "Proceedings of the IEEE International Symposium on Circuits and Systems",<br>&emsp;title = "Versatile Framework for Power Delivery Exploration",<br>&emsp;year = "2018",<br>&emsp;doi = "10.1109/ISCAS.2018.8351478",<br>}
<span>@inproceedings{bairamkulov_versatile,<br>&emsp;author = "R. Bairamkulov and K. Xu and M. Popovich and J. S. Ochoa and V. Srinivas and E. G. Friedman",<br>&emsp;doi = "10.1109/ISCAS.2018.8351478",booktitle = "Proceedings of the IEEE International Symposium on Circuits and Systems, Florence, Italy",<br>&emsp;title = "Versatile Framework for Power Delivery Exploration",<br>&emsp;year = "2018",<br>&emsp;<br>}
</span>
</details>
</p>
<p>
<strong>R. Bairamkulov</strong>, A. Ruderman and Y. L. Familiant, "Time Domain Optimization of Voltage and Current THD for a Three-Phase Cascaded H-Bridge Inverter," <i>Proceedings of the IEEE International Power Electronics and Motion Control Conference</i>, 2016.
<strong>R. Bairamkulov</strong>, A. Ruderman and Y. L. Familiant, "Time Domain Optimization of Voltage and Current THD for a Three-Phase Cascaded H-Bridge Inverter," <i>Proceedings of the IEEE International Power Electronics and Motion Control Conference, Varna, Bulgaria</i>, 2016.
<details>
<summary>
<u>Bibtex</u> <a href="https://doi.org/10.1109/EPEPEMC.2016.7752002">Publisher</a> <a href="papers/PEMC_THD.pdf">PDF</a>
</summary>
<span>@inproceedings{bairamkulov_pemc,<br>&emsp;author = "R. Bairamkulov and A. Ruderman and Y. L. Familiant",<br>&emsp;booktitle = "Proceedings of the IEEE International Power Electronics and Motion Control Conference",<br>&emsp;title = "Time Domain Optimization of Voltage and Current THD for a Three-Phase Cascaded H-Bridge Inverter",<br>&emsp;year = "2016",<br>&emsp;doi = "10.1109/EPEPEMC.2016.7752002",<br>}
<span>@inproceedings{bairamkulov_pemc,<br>&emsp;author = "R. Bairamkulov and A. Ruderman and Y. L. Familiant",<br>&emsp;doi = "10.1109/EPEPEMC.2016.7752002",booktitle = "Proceedings of the IEEE International Power Electronics and Motion Control Conference, Varna, Bulgaria",<br>&emsp;title = "Time Domain Optimization of Voltage and Current THD for a Three-Phase Cascaded H-Bridge Inverter",<br>&emsp;year = "2016",<br>&emsp;<br>}
</span>
</details>
</p>
Expand Down

0 comments on commit 4fcf3a1

Please sign in to comment.