Compare commits
10 Commits
d4bd79d5c1
...
0c04b23f7e
Author | SHA1 | Date |
---|---|---|
![]() |
0c04b23f7e | |
![]() |
c97ceba55a | |
![]() |
55f7927d93 | |
![]() |
3ddc4f4510 | |
![]() |
48817dd5f9 | |
![]() |
27c9a6d754 | |
![]() |
d0ac87267d | |
![]() |
495cca93e9 | |
![]() |
658507e1a6 | |
![]() |
b8ed58409a |
33
README.md
33
README.md
|
@ -1,27 +1,28 @@
|
||||||
## Local Deployment
|
## About
|
||||||
```bundle exec jekyll clean; bundle exec jekyll serve --livereload --watch```
|
This repository holds the source for my academic homepage, built with Jekyll, an open source static website generator. The theme / layout is adapted from [a template published by NCSU Libraries](https://github.com/NCSU-Libraries/jekyll-academic) which in turn is based on the [Minimal Mistakes theme by Michael Rose](https://github.com/mmistakes/minimal-mistakes).
|
||||||
|
|
||||||
|
## Major Changes
|
||||||
|
I have naturally changed the colors, fonts and other cosmetic components to my liking, but
|
||||||
|
the overall theme is largely unchanged. I have added two color definitions as well to reflect
|
||||||
|
the theme colors of my institute which I have named Jamun and Marigold.
|
||||||
|
|
||||||
## Introduction
|
### Sites with non-root hosting
|
||||||
This template utilizes Jekyll, an open source static website generator, as well as a theme based largely off of the Minimal Mistakes theme by Michael Rose. The purpose of this template is to provide you with a simple, well designed website that is optimized for hosting on Github pages. We aim to reduce the technological know-how and time that is usually required for maintaining a personal or professional website.
|
|
||||||
|
|
||||||
#### Why Should I Use This?
|
When hosting in a service where the root directory for the site will be a subdirectory, e.g. in
|
||||||
By using this template you will have a website that is well designed, easy to maintain, free to host and easy to update. While there are many options out there for personal and professional websites, most are dependant on the platform on which they were built, and cannot be easily migrated. This template, while built for Github Pages integration, provides flexibility should you choose to host it elsewhere.
|
my case the root directory for my page is (https://iitdh.ac.in/~kabhijit/), the paths of all stylesheets and other relative links need to point to ```/~kabhijit``` rather than the top-level root, i.e. ```/```. Normally, Jekyll themes use the variables ```baseurl``` or ```url``` to set these, but in this particular template the variable that needs to be used happens to be ```site.github.url```, presumably because this would be needed most commonly when deploying via github pages, to a URL like ```github.io/reponame/```. See the first few lines of the ```_config.yaml``` file for the syntax. If you are deploying to the root directory, this variable can be commented out.
|
||||||
|
|
||||||
## [Getting Started Guide](https://ncsu-libraries.github.io/jekyll-academic-docs/)
|
For **testing** this non-root situation locally, the best way is to serve the site locally with the path right away, and save future heartaches:
|
||||||
Complete documentation for getting started as well as advanced features of Jekyll Academic can be found at [https://ncsu-libraries.github.io/jekyll-academic-docs/](https://ncsu-libraries.github.io/jekyll-academic-docs/).
|
```bundle exec jekyll clean; bundle exec jekyll serve -b /path/to/dir --livereload --watch```
|
||||||
|
|
||||||
## Migrating to a new default branch name
|
### Deploying
|
||||||
We've decided to change this project's default branch name to 'main'. If you've forked this repository prior to July 20th, 2021, then you should a message with update instructions when you go to your fork in github:
|
|
||||||
|
|
||||||

|
Remember to copy only the contents of the ```_site``` subdirectory over to the webserver.
|
||||||
|
|
||||||
In your fork on GitHub, go to the branches view, and click on the edit icon next to the 'master' branch. Change the branch name to main. Underneath the input box where you change the name you will be presented with the commands that you will need to run on your local copy of your fork.
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
|
|
||||||
## Upgrade Notes for June 2021 release
|
## Upgrade Notes for June 2021 release
|
||||||
|
|
||||||
|
__The following section is retained verbatim from the source repository and is needed only if you are using Reveal.js presentations__
|
||||||
|
|
||||||
If you are running a fork of Jekyll Academic before June 2021, we made some breaking changes to upgrade the underlying Jekyll version and to address the constant github/dependabot security notices mentioned in issue #4.
|
If you are running a fork of Jekyll Academic before June 2021, we made some breaking changes to upgrade the underlying Jekyll version and to address the constant github/dependabot security notices mentioned in issue #4.
|
||||||
|
|
||||||
We have updated Jekyll to version 4 and removed reveal.js as an included library. We still want to support reveal.js presentations, so we have taken the suggestion from issue #4 and made the reveal.js directory a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules). If you are running Jekyll Academic as a Github Page, this should hopefully be a minor change.
|
We have updated Jekyll to version 4 and removed reveal.js as an included library. We still want to support reveal.js presentations, so we have taken the suggestion from issue #4 and made the reveal.js directory a [git submodule](https://git-scm.com/book/en/v2/Git-Tools-Submodules). If you are running Jekyll Academic as a Github Page, this should hopefully be a minor change.
|
||||||
|
@ -32,7 +33,7 @@ If, however, you are running Jekyll Academic locally or on a custom server, afte
|
||||||
|
|
||||||
If you have any reveal.js presentations posted, you may need to make some updates for them to display properly using reveal.js version 4. See [Jekyll's documentation](https://revealjs.com/upgrading/) for details.
|
If you have any reveal.js presentations posted, you may need to make some updates for them to display properly using reveal.js version 4. See [Jekyll's documentation](https://revealjs.com/upgrading/) for details.
|
||||||
|
|
||||||
## Keeping reveal.js up to date
|
### Keeping reveal.js up to date
|
||||||
Moving forward, if you'd like to update reveal.js you will need to run the following commands:
|
Moving forward, if you'd like to update reveal.js you will need to run the following commands:
|
||||||
|
|
||||||
`$ git submodule update --remote`
|
`$ git submodule update --remote`
|
||||||
|
|
10
_config.yml
10
_config.yml
|
@ -1,5 +1,11 @@
|
||||||
# Site wide configuration
|
# Site wide configuration
|
||||||
|
|
||||||
|
github:
|
||||||
|
url: /~kabhijit
|
||||||
|
|
||||||
|
#baseurl:
|
||||||
|
#url:
|
||||||
|
|
||||||
title: kabhijit
|
title: kabhijit
|
||||||
locale: en_US
|
locale: en_US
|
||||||
logo: logo.png # filename of a logo image that has been placed into your images directory
|
logo: logo.png # filename of a logo image that has been placed into your images directory
|
||||||
|
@ -8,8 +14,8 @@ logo: logo.png # filename of a logo image that has been placed into your images
|
||||||
owner:
|
owner:
|
||||||
name: Abhijit Kshirsagar
|
name: Abhijit Kshirsagar
|
||||||
avatar: kAbhijit_02_600px.jpg
|
avatar: kAbhijit_02_600px.jpg
|
||||||
bio: "✉: kabhijit at iitdh.ac.in <br> Asst. Professor <br>Dept. of EECE<br> Indian Institute of Technology<br>Dharwad, Karnataka"
|
bio: "Asst. Professor <br>Dept. of EECE<br> Indian Institute of Technology Dharwad <br> Karnataka"
|
||||||
#email: kabhijit@iitdh.ac.in
|
email: kabhijit [at] iitdh.ac.in
|
||||||
# Do not include the @ symbol in your Twitter username
|
# Do not include the @ symbol in your Twitter username
|
||||||
twitter: peg_iitdh
|
twitter: peg_iitdh
|
||||||
linkedin: abhijitkshirsagar
|
linkedin: abhijitkshirsagar
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
<br>
|
||||||
|
<p><strong>Other Links:</strong></p>
|
||||||
|
<a href="https://gitea.iitdh.ac.in/kabhijit/">My Git Repo (GiTEA@IITDH)</a> <br>
|
||||||
|
<!-- <a href="https://www.linkedin.com/in/abhijitkshirsagar/">LinkedIn</a> -->
|
||||||
|
<a href="https://sites.google.com/iitdh.ac.in/kabhijit-local/">GSite (needs iitdh login)</a>
|
||||||
|
<!-- <a href="https://kabhijit.net">My personal website</a> -->
|
||||||
|
|
||||||
|
<br>
|
||||||
|
<br>
|
||||||
|
|
||||||
|
<p style="font-size: 14px" class="text-left">
|
||||||
|
तत्कर्म यन्न बन्धाय सा विद्या या विमुक्तये।
|
||||||
|
आयासायापरं कर्म विद्यान्या शिल्पनैपुणम्॥
|
||||||
|
<!-- See end the bottom of this html file for translation -->
|
||||||
|
</p>
|
||||||
|
<p style="font-size: 14px" class="text-left">
|
||||||
|
|
||||||
|
<a style="color:#b5bec9;font-size:0.8em; float:left;" href="translation/" target="_blank">/Translation/</a>
|
||||||
|
</p>
|
|
@ -11,8 +11,10 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<h3 itemprop="name">{{ author.name }}</h3>
|
<h3 itemprop="name">{{ author.name }}</h3>
|
||||||
<p>{{ author.bio }}</p>
|
<p style="font-size: 16px" class="text-left" >{{ author.bio }}</p>
|
||||||
{% if author.email %}<a href="mailto:{{ author.email }}" class="author-social" target="_blank"><i class="fa fa-fw fa-envelope-square"></i> Email</a>{% endif %}
|
|
||||||
|
{% if author.email %}<a class="author-social" target="_blank"><i class="fa fa-fw fa-envelope-square"></i> {{ author.email }} </a>{% endif %}
|
||||||
|
|
||||||
{% if author.twitter %}<a href="https://twitter.com/{{ author.twitter }}" class="author-social" target="_blank"><i class="fa fa-fw fa-twitter-square"></i> Twitter</a>{% endif %}
|
{% if author.twitter %}<a href="https://twitter.com/{{ author.twitter }}" class="author-social" target="_blank"><i class="fa fa-fw fa-twitter-square"></i> Twitter</a>{% endif %}
|
||||||
{% if author.facebook %}<a href="https://facebook.com/{{ author.facebook }}" class="author-social" target="_blank"><i class="fa fa-fw fa-facebook-square"></i> Facebook</a>{% endif %}
|
{% if author.facebook %}<a href="https://facebook.com/{{ author.facebook }}" class="author-social" target="_blank"><i class="fa fa-fw fa-facebook-square"></i> Facebook</a>{% endif %}
|
||||||
{% if author.google.plus %}<a href="https://plus.google.com/+{{ author.google.plus }}" class="author-social" target="_blank"><i class="fa fa-fw fa-google-plus-square"></i> Google+</a>{% endif %}
|
{% if author.google.plus %}<a href="https://plus.google.com/+{{ author.google.plus }}" class="author-social" target="_blank"><i class="fa fa-fw fa-google-plus-square"></i> Google+</a>{% endif %}
|
||||||
|
@ -37,23 +39,6 @@
|
||||||
{% if author.mendeley %}<a href="https://www.mendeley.com/profiles/{{ author.mendeley }}" class="author-social" target="_blank"><i class="ai ai-fw ai-mendeley"></i> Mendeley</a>{% endif %}
|
{% if author.mendeley %}<a href="https://www.mendeley.com/profiles/{{ author.mendeley }}" class="author-social" target="_blank"><i class="ai ai-fw ai-mendeley"></i> Mendeley</a>{% endif %}
|
||||||
{% if author.orcid %}<a href="https://orcid.org/{{ author.orcid }}" class="author-social" target="_blank"><i class="ai ai-fw ai-orcid"></i> ORCID</a>{% endif %}
|
{% if author.orcid %}<a href="https://orcid.org/{{ author.orcid }}" class="author-social" target="_blank"><i class="ai ai-fw ai-orcid"></i> ORCID</a>{% endif %}
|
||||||
|
|
||||||
<p><strong>Other Links:</strong></p>
|
{% include _additional_links_leftpane.html %}
|
||||||
<a href="https://gitea.iitdh.ac.in/kabhijit/">My Git Repo (GiTEA@IITDH)</a> <br>
|
|
||||||
<!-- <a href="https://www.linkedin.com/in/abhijitkshirsagar/">LinkedIn</a> -->
|
|
||||||
<a href="https://sites.google.com/iitdh.ac.in/kabhijit-local/">GSite (needs iitdh login)</a>
|
|
||||||
<!-- <a href="https://kabhijit.net">My personal website</a> -->
|
|
||||||
|
|
||||||
<br>
|
|
||||||
<br>
|
|
||||||
|
|
||||||
<p style="font-size: 14px" class="text-left">
|
|
||||||
तत्कर्म यन्न बन्धाय सा विद्या या विमुक्तये।
|
|
||||||
आयासायापरं कर्म विद्यान्या शिल्पनैपुणम्॥
|
|
||||||
<!-- See end the bottom of this html file for translation -->
|
|
||||||
</p>
|
|
||||||
<p style="font-size: 14px" class="text-left">
|
|
||||||
|
|
||||||
<a style="color:#b5bec9;font-size:0.8em; float:left;" href="translation.html" target="_blank">Translation</a>
|
|
||||||
</p>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -18,6 +18,6 @@
|
||||||
<span><a rel="license" href="https://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution-NonCommercial 4.0 International License</a>. Powered by <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="https://ncsu-libraries.github.io/jekyll-academic/" rel="nofollow">Jekyll Academic</a> theme.
|
<span><a rel="license" href="https://creativecommons.org/licenses/by-nc/4.0/"><img alt="Creative Commons License" style="border-width:0" src="https://i.creativecommons.org/l/by-nc/4.0/88x31.png" /></a><br />This work is licensed under a <a rel="license" href="https://creativecommons.org/licenses/by-nc/4.0/">Creative Commons Attribution-NonCommercial 4.0 International License</a>. Powered by <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="https://ncsu-libraries.github.io/jekyll-academic/" rel="nofollow">Jekyll Academic</a> theme.
|
||||||
<br /></span>
|
<br /></span>
|
||||||
{% else %}
|
{% else %}
|
||||||
<span>© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Powered by <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> using the <a href="https://ncsu-libraries.github.io/jekyll-academic/" rel="nofollow">Jekyll Academic</a> theme.
|
<span>© {{ site.time | date: '%Y' }} {{ site.owner.name }}. Built with <a href="https://jekyllrb.com" rel="nofollow">Jekyll</a> <a href="https://github.com/abhijit86k/AcadHomepage25" rel="nofollow">Academic theme</a>.
|
||||||
<br /></span>
|
<br /></span>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
|
@ -360,6 +360,7 @@ $button-size: 1.5rem;
|
||||||
p {
|
p {
|
||||||
font-size: 80%;
|
font-size: 80%;
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
|
text-align: left;
|
||||||
}
|
}
|
||||||
a, a:hover {
|
a, a:hover {
|
||||||
border-bottom: 0 solid transparent;
|
border-bottom: 0 solid transparent;
|
||||||
|
|
|
@ -131,6 +131,7 @@ blockquote {
|
||||||
========================================================================== */
|
========================================================================== */
|
||||||
|
|
||||||
p {
|
p {
|
||||||
|
text-align: justify;
|
||||||
margin: 0 0 $indent-var;
|
margin: 0 0 $indent-var;
|
||||||
// sibling indentation
|
// sibling indentation
|
||||||
@if $paragraph-indent == true {
|
@if $paragraph-indent == true {
|
||||||
|
|
6
bio.md
6
bio.md
|
@ -1,11 +1,11 @@
|
||||||
---
|
---
|
||||||
layout: resume
|
layout: page
|
||||||
|
excerpt: Bio
|
||||||
menuorder: 2
|
menuorder: 2
|
||||||
menutitle: Bio
|
menutitle: Bio
|
||||||
---
|
---
|
||||||
|
|
||||||
|
I completed my B. Tech from the erstwhile Department of Electronics and Instrumentation at [VIT Vellore](https://iitdh.ac.in/kabhijit/vit.ac.in), after which I joined the **M. Tech** program at the [Department of Electronic Systems Engineering](https://iitdh.ac.in/kabhijit/dese.iisc.ac.in) (formerly CEDT) at the [Indian Institute of Science, Bangalore](https://iitdh.ac.in/kabhijit/iisc.ac.in). I then continued towards a **Ph.D** in Power Electronics and Drives in the same department. My [doctoral research on open-end induction motor drives](http://etd.iisc.ac.in/handle/2005/2722) was supervised by [Prof. L. Umanand](http://surya.dese.iisc.ac.in/lu/), with guidance from [Prof. K. Gopakumar](http://kgopakumar.dese.iisc.ac.in/). During my M. Tech I developed a disributed Air Quality Monitoring System under the supervision of [Prof. Jamadagani](https://in.linkedin.com/in/hsjam) and funded by [CiSTUP, IISc](http://cistup.iisc.ac.in/).
|
||||||
I completed my B. Tech from the erstwhile Department of Electronics and Instrumentation at [VIT Vellore](https://iitdh.ac.in/kabhijit/vit.ac.in), after which I joined the **M. Tech** program at the [Department of Electronic Systems Engineering](https://iitdh.ac.in/kabhijit/dese.iisc.ac.in) (formerly CEDT) at the [Indian Institute of Science, Bangalore](https://iitdh.ac.in/kabhijit/iisc.ac.in). I then continued towards a **Ph.D** in Power Electronics and Drives in the same department. My [doctoral research on open-end induction motor drives](http://etd.iisc.ac.in/handle/2005/2722) was supervised by [Prof. L. Umanand](http://surya.dese.iisc.ac.in/lu/), with the guidance from [Prof. K. Gopakumar](http://kgopakumar.dese.iisc.ac.in/). During my M. Tech I developed a disributed Air Quality Monitoring System under the supervision of [Prof. Jamadagani](https://in.linkedin.com/in/hsjam) and funded by [CiSTUP, IISc](http://cistup.iisc.ac.in/).
|
|
||||||
|
|
||||||
I then took up a Post-doctoral appointment in [Prof. Ned Mohan](https://iitdh.ac.in/kabhijit/z.umn.edu/nedmohan)'s Lab at the [University of Minnesota, Twin Cities](https://iitdh.ac.in/kabhijit/umn.edu) where I worked on a number of research projects from matrix converters for open-end machines to modular converters for medium-voltage grid connected renewable energy conversion. I was also a part of a cross-disciplinary team researching energy management and LED controls for deep-winter greenhouses and warehouse-farms. During this time I was also involved in teaching [undergraduate and graduate courses](https://iitdh.ac.in/kabhijit/mohan.umn.edu), developing material for [CUSP](https://iitdh.ac.in/kabhijit/cusp.umn.edu) with support from the [National Science Foundation](https://iitdh.ac.in/kabhijit/nsf.gov) and the [Office of Naval Research](https://www.onr.navy.mil/).
|
I then took up a Post-doctoral appointment in [Prof. Ned Mohan](https://iitdh.ac.in/kabhijit/z.umn.edu/nedmohan)'s Lab at the [University of Minnesota, Twin Cities](https://iitdh.ac.in/kabhijit/umn.edu) where I worked on a number of research projects from matrix converters for open-end machines to modular converters for medium-voltage grid connected renewable energy conversion. I was also a part of a cross-disciplinary team researching energy management and LED controls for deep-winter greenhouses and warehouse-farms. During this time I was also involved in teaching [undergraduate and graduate courses](https://iitdh.ac.in/kabhijit/mohan.umn.edu), developing material for [CUSP](https://iitdh.ac.in/kabhijit/cusp.umn.edu) with support from the [National Science Foundation](https://iitdh.ac.in/kabhijit/nsf.gov) and the [Office of Naval Research](https://www.onr.navy.mil/).
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
---
|
---
|
||||||
layout: resume
|
layout: page
|
||||||
menuorder: 4
|
menuorder: 4
|
||||||
menutitle: Consultancy
|
menutitle: Consultancy
|
||||||
---
|
---
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 4.2 MiB |
Binary file not shown.
After Width: | Height: | Size: 672 KiB |
Binary file not shown.
After Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
After Width: | Height: | Size: 304 KiB |
8
index.md
8
index.md
|
@ -6,9 +6,11 @@ menuorder: 1
|
||||||
---
|
---
|
||||||
|
|
||||||
I am an Assistant Professor in the Department of [Electrical, Electronics, and Communications Engineering](http://ee.iitdh.ac.in) at the [Indian Institute of Technology at Dharwad](https://iitdh.ac.in/). I am a part of the [Power and Energy group](https://sites.google.com/iitdh.ac.in/peg-iitdh) where I conduct research in power electronics, renewable energy systems and electric mobility.
|
I am an Assistant Professor in the Department of [Electrical, Electronics, and Communications Engineering](http://ee.iitdh.ac.in) at the [Indian Institute of Technology at Dharwad](https://iitdh.ac.in/). I am a part of the [Power and Energy group](https://sites.google.com/iitdh.ac.in/peg-iitdh) where I conduct research in power electronics, renewable energy systems and electric mobility.
|
||||||
|
Since November 2024, I am serving as the
|
||||||
|
Karnataka Renewable Energy Development Limited --
|
||||||
|
Renewable Energy Research **(KREDL-RER)** Assistant Chair Professor.
|
||||||
|
|
||||||
|
[//]: # I completed my M. Tech. (Electronics Design) and Ph.D (Power Electronics and Drives) from the [Department of Electronic Systems Engineering](https://iitdh.ac.in/kabhijit/dese.iisc.ac.in) (formerly CEDT) at the [Indian Institute of Science, Bangalore](https://iitdh.ac.in/kabhijit/iisc.ac.in). I was a postdoctoral fellow in the US, at the [University of Minnesota, Twin Cities](http://umn.edu/) and at the [Oak Ridge National Lab](https://www.ornl.gov/), Tennessee.
|
||||||
I completed my M. Tech. (Electronics Design) and Ph.D (Power Electronics and Drives) from the [Department of Electronic Systems Engineering](https://iitdh.ac.in/kabhijit/dese.iisc.ac.in) (formerly CEDT) at the [Indian Institute of Science, Bangalore](https://iitdh.ac.in/kabhijit/iisc.ac.in). I was a postdoctoral fellow in the US, at the [University of Minnesota, Twin Cities](http://umn.edu/) and at the [Oak Ridge National Lab](https://www.ornl.gov/), Tennessee.
|
|
||||||
|
|
||||||
### Research
|
### Research
|
||||||
|
|
||||||
|
@ -22,7 +24,7 @@ This work is supported by generous grants from DST and ANRF (erstwhile SERB), al
|
||||||
|
|
||||||
### Teaching
|
### Teaching
|
||||||
|
|
||||||
I teach theory and laboratory courses at the undergraduate and postgraduate level in Power Electronics, Drives, Renewable Energy, Electric Vehicles, and Embedded Control. For more details see [here](/teaching.html)
|
I teach theory and laboratory courses at the undergraduate and postgraduate level in Power Electronics, Drives, Renewable Energy, Electric Vehicles, and Embedded Control. For more details see [here](teaching/)
|
||||||
|
|
||||||
### Training and Consultancy
|
### Training and Consultancy
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
---
|
---
|
||||||
layout: presentation-post-index
|
layout: presentation-post-index
|
||||||
menutitle: Presentations
|
menutitle: Presentations
|
||||||
menuorder: 5
|
menuorder:
|
||||||
excerpt: "Recent Presentations"
|
excerpt: "Recent Presentations"
|
||||||
---
|
---
|
||||||
|
|
|
@ -0,0 +1,43 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
excerpt: "Research"
|
||||||
|
menutitle: Research
|
||||||
|
menuorder: 2
|
||||||
|
---
|
||||||
|
|
||||||
|
## Ongoing Research
|
||||||
|
|
||||||
|
### Modular and Multilevel Converters
|
||||||
|
Cascaded H-Bridge (CHB) multilevel inverters are popular because of
|
||||||
|
their inherent modularity, scalability, and efficient voltage
|
||||||
|
translation capability. Carrier-based modulation schemes such as
|
||||||
|
Level-Shifted PWM (LSPWM) are simple and easy to implement but result in
|
||||||
|
extreme disparity in processed power among the modules. This unequal
|
||||||
|
loading and non-uniform semiconductor loss results in unequal thermal
|
||||||
|
stress, accelerating premature failures in over-stressed modules.
|
||||||
|
Space-vector and switching angle adjustment schemes can remedy this but
|
||||||
|
can be computationally impractical for higher-order CHBs.
|
||||||
|
|
||||||
|
Our work has led to the development of new, computationally efficient
|
||||||
|
carrier-reassignment schemes for 9-level and 17-level
|
||||||
|
CHB inverters to achieve near-perfect real and reactive power balance across
|
||||||
|
modules over the entire power factor range. Further, semiconductor loss analysis
|
||||||
|
shows that conduction and switching losses are also equalized
|
||||||
|
across the topology. A simple combinational circuit is also developed to balance the zero-state conduction losses without introducing additional switching.
|
||||||
|
|
||||||
|
A 9-level CHB Power stage is developed for hardware testing and detailed loss models are
|
||||||
|
made in Real-time simulation using the state-of-the-art OpalRT HIL Platform.
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
### Magnetics Design for Power Harvesting
|
||||||
|
Patent Pending:<br>
|
||||||
|
A power harvester for line-crawling robots for Live Powerline inspection
|
||||||
|
|
||||||
|

|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[//]: # ### Power Converters for EV Chargers and ### Real-time Simulation and Hardware-in-Loop Testing
|
|
@ -0,0 +1,59 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
excerpt: "Teaching"
|
||||||
|
menutitle: Teaching
|
||||||
|
menuorder: 3
|
||||||
|
---
|
||||||
|
|
||||||
|
|
||||||
|
###### Autumn 2022
|
||||||
|
|
||||||
|
* EE311: Electrical Machines and Power Electronics Lab
|
||||||
|
|
||||||
|
* Introduction to Electric Drives (ii) \[Executive M. Tech\]
|
||||||
|
|
||||||
|
|
||||||
|
###### Spring 2022
|
||||||
|
|
||||||
|
* EE209: Introduction to Power Electronics
|
||||||
|
|
||||||
|
* EE502: Advanced Electric Drives
|
||||||
|
|
||||||
|
* EE442: System Design of Electronic Products
|
||||||
|
|
||||||
|
|
||||||
|
###### Autumn 2021
|
||||||
|
|
||||||
|
* EE205: Network Theory
|
||||||
|
|
||||||
|
* EE311: Electrical Machines and Power Electronics Lab
|
||||||
|
|
||||||
|
|
||||||
|
###### Spring 2021
|
||||||
|
|
||||||
|
* EE209: Introduction to Power Electronics
|
||||||
|
|
||||||
|
* EE434: Modelling and Control of Power Electronics
|
||||||
|
|
||||||
|
|
||||||
|
###### Autumn 2020
|
||||||
|
|
||||||
|
* EE205: Network Theory
|
||||||
|
|
||||||
|
|
||||||
|
###### Spring 2020
|
||||||
|
|
||||||
|
* EE223: Introduction to Power Systems (Second-Half Semester Course)
|
||||||
|
|
||||||
|
|
||||||
|
###### _Upcoming Courses (under development)_
|
||||||
|
|
||||||
|
* System Design of Electronic Products
|
||||||
|
|
||||||
|
|
||||||
|
This course will cover many of the design choices and decisions that product designers face. How much capacitance is needed on the DC bus? Will this design pass EMI testing? How will this op-amp drift with time? Are those gold-plated connectors really worth it? Is one 6.8k resistor better than two 3.3k resistors? Can it _really_ be fixed later in software?
|
||||||
|
|
||||||
|
* Advanced topics in Power Conversion
|
||||||
|
|
||||||
|
|
||||||
|
This will be a graduate topics course covering advanced topics in power conversion topologies, such as power semiconductor device characteristics and behaviour, advanced concepts in design of magnetics for power converters; resonant, soft switching and wireless power transer.
|
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
layout: page
|
||||||
|
excerpt: "Translation"
|
||||||
|
menutitle: Translation
|
||||||
|
menuorder:
|
||||||
|
---
|
||||||
|
|
||||||
|
Translation:
|
||||||
|
|
||||||
|
Reproduced from: hinduism.stackexchange.com/questions/5335/
|
||||||
|
|
||||||
|
tat karma yan na bandhāya => That (tat) is 'work' (karma), which (yat) is not (na) for the bondage (bandhāya). The expression "is for something" is often used in Sanskrit idiomatically to mean "leads to something", "causes something" or "transforms into something". Thus, a more idiomatic reading here would be "(Only) that is (real) 'work', which does not lead to bondage." Philosophically, this invokes the doctrine of performing one's duties, remaining detached from its results, and for that matter from everything else. The idea is that 'work' (karman), or performance of one's duties, is worth only if it is done observing proper detachment, and thus does not lead to attachment (i.e. "bondage") to this world.
|
||||||
|
|
||||||
|
sā vidyā yā vimuktaye => That (sā) is 'knowledge' (vidyā), which (yā) is for the liberation (vimuktaye). Again, this uses the same idiom as before, and thus really means: "(Only) that is (real) knowledge, which leads to liberation." Philosophically speaking, the liberation (vimukti/mokṣa) here refers to, at the very basic, to the emancipation from the cycle of (re-)birth and death. Thus the idea is that only that kind of knowledge and skill are worth, which lead to liberation from the worldly cycles of birth and death.
|
||||||
|
|
||||||
|
āyāsāyāparaṃ karma => For hardship/effort (āyāsāya) is the 'other work' (aparaṃ karma). As familiar to us by now, this really means: "All other kinds of work lead to hardship," i.e. works and duties performed with attachment (i.e. hoping for a certain result, or for the love of someone/something) lead, in the long run, to sufferings. There is a little bit more to add about the choice of the word "apara-". I translate it here as "other", which is indeed one of this common meanings, and also a relevant reading as will be apparent from the next part of the verse, but it also has another usage especially in philosophical contexts where it serves as the antonym to "para-" (absolute, higher, etc.) Thus, a typical usage is "parā vidyā" = the "higher knowledge", which refers to the transcendental/spiritual knowledge (that leads to vimukti), and in contrast, "aparā vidyā" = the other/lower knowledge, which refers to our worldly knowledge (which often leads to "bondage"). Thus, in this context both readings - "other/worldly duties/works" will be appropriate for "aparaṃ karma", without any real difference in the philosophical interpretation.
|
||||||
|
|
||||||
|
vidyānyā śilpanaipuṇam => The other (anyā) knowledge (vidyā) is skills in art/craft/etc. (śilpa-naipuṇam), i.e. the other kinds of knowledge are mere worldly skills, and hence are probably not even worth being called knowledge/vidyā.
|
Loading…
Reference in New Issue