Department of
Electrical & Electronics
Enlighting the world with innovation and excellence.
The department of Electrical and Electronics Engineering was established in the year 2008, initially with an intake of 60 students per year. It is affiliated to Anna University and follows a rigorous curriculum.
The department boasts rich academic delivery, both theory and practical, with qualified faculty and modern laboratory equipment to cope up with updated University syllabi and industry needs.
Why EEE?
Electrical and Electronics Engineering is responsible for enlightening the world, serving for human comfort from home appliances to space crafts. Our focus is on providing excellence in technical education and producing globally competent engineers.
"Our mission is to nurture technical brilliance and ethical integrity in our students. We bridge the gap between classroom learning and industrial application through hands-on experience and continuous innovation."
Head of Department
Dept. of Electrical & Electronics Engineering
Vision
To provide excellence in technical education of electrical and electronics engineering and produce globally competent engineers for the revolution of industry.
Mission
• Provide good infrastructure and serene environment.
• Prepare students through contextual technical education.
• Impart knowledge via projects, workshops and industry interaction.
• Prepare graduates with ethical, social and environmental awareness.
Electrical Machines Laboratory
Power Electronics Laboratory
Control Systems Laboratory
Electronic Devices and Circuits Lab
Renewable Energy Systems Lab
Microprocessor and Microcontroller Lab
const facultyData = {
'rajkumar': { 'name': 'Dr. M. Rajkumar', 'role': 'Professor & Principal' },
'jeyalakshmi': { 'name': 'Dr. V. Jeyalakshmi', 'role': 'Professor & HOD / EEE' },
'arun': { 'name': 'Dr. T. Arun Srinivas', 'role': 'ASP / EEE' },
'rajvel': { 'name': 'Mr. P. Rajvel Nagarajan', 'role': 'AP / EEE & TPO' },
'jabez': { 'name': 'Mr. S. Jabez Kiruba', 'role': 'AP / EEE' },
'rajesh': { 'name': 'Mr. G. Rajesh', 'role': 'AP / EEE' },
'judelisa': { 'name': 'Sr. C. Judelisa', 'role': 'AP / EEE' },
'manojkumar': { 'name': 'Mr. T. Manojkumar', 'role': 'AP / EEE' },
'sathya_eee': { 'name': 'Mrs. S. Sathya', 'role': 'AP / EEE' },
'farihan': { 'name': 'Mrs. A. Shreen Farihan', 'role': 'AP / EEE' },
'metilda': { 'name': 'Mrs. S. Jai Metilda', 'role': 'AP / ECE' },
'sathya_mat': { 'name': 'Mrs. G. Sathya', 'role': 'AP / MAT' }
};
const filters = {
'all': 'All Faculty',
'publications': 'Publications',
'research': 'Research Area',
'patents': 'Patents',
'awards': 'Awards'
};
let currentFilter = 'all';
let searchTerm = ''; // Search term-ai track panna
// Search bar-la type pannumpothu trigger aagum
function handleSearch() {
searchTerm = document.getElementById('faculty-search').value.toLowerCase();
renderFaculty();
}
function renderFilters() {
const container = document.getElementById('filter-container');
if(!container) return;
container.innerHTML = '';
Object.keys(filters).forEach(key => {
const isActive = currentFilter === key;
container.innerHTML += `
${filters[key]}
`;
});
}
function setFilter(key) {
currentFilter = key;
renderFilters();
renderFaculty();
}
function renderFaculty() {
const grid = document.getElementById('faculty-grid');
if(!grid) return;
grid.innerHTML = '';
let matchCount = 0; // Match aagura faculty-ai count panna
Object.keys(facultyData).forEach(key => {
const d = facultyData[key];
// Filter logic
// Category Filter Logic
if (currentFilter !== 'all' && (!d.categories || !d.categories.includes(currentFilter))) {
return;
}
// Search Logic (Name match check)
if (searchTerm && !d.name.toLowerCase().includes(searchTerm)) {
return;
}
matchCount++;
const imageSrc = d.image || `https://api.dicebear.com/7.x/avataaars/svg?seed=${encodeURIComponent(d.name)}`;
grid.innerHTML += `
${d.categories && d.categories.length > 0 ? `
${d.categories.slice(0, 2).map(cat => `
`).join('')}
` : ''}
${d.name}
${d.role}
View Portfolio
${d.categories ? d.categories.map(cat => `${cat} `).join('') : ''}
`;
});
// Match ethuvum illai endral intha message varum
if (matchCount === 0) {
grid.innerHTML = `
No faculty members found
Try adjusting your search or filters
`;
}
}
renderFilters();
renderFaculty();
function openModal(facultyId) {
const d = facultyData[facultyId];
if (!d) return;
const modal = document.getElementById('faculty-modal');
const popupBody = document.getElementById('modal-content');
const imgSrc = d.image || `https://api.dicebear.com/7.x/avataaars/svg?seed=${encodeURIComponent(d.name)}`;
const personal = d.personal || {};
const ids = d.ids || {};
const experienceRows = (d.experience || []).length > 0 ? d.experience.map(e => `
${e.type || ''} ${e.inst || ''} ${e.role || ''} ${e.dur || ''}
`).join('') : '
N/A ';
const academicsRows = (d.academics || []).length > 0 ? d.academics.map(a => `
${a.deg || ''} ${a.inst || ''} ${a.field || ''} ${a.year || ''}
`).join('') : '
N/A ';
const journalRows = (d.research?.journals || []).length > 0 ? d.research.journals.map(j => `
${j.type || ''} ${j.topic || ''} ${j.journal || ''} ${j.year || ''}
`).join('') : '
N/A ';
const conferenceRows = (d.research?.conferences || []).length > 0 ? d.research.conferences.map(c => `
${c.type || ''} ${c.topic || ''} ${c.journal || ''} ${c.year || ''}
`).join('') : '
N/A ';
const bookRows = (d.research?.books || []).length > 0 ? d.research.books.map(b => `
${b.type || ''} ${b.title || ''} ${b.author || ''} ${b.publisher || ''} ${b.isbn || ''} ${b.year || ''}
`).join('') : '
N/A ';
const certRows = (d.certificates || []).length > 0 ? d.certificates.map(c => `
${c.title || ''} ${c.org || ''} ${c.dur || ''} ${c.year || ''} ${c.mode || ''}
`).join('') : '
N/A ';
const patentRows = (d.patents || []).length > 0 ? d.patents.map(p => `
${p.title || ''} ${p.inventors || ''} ${p.no || ''} ${p.status || ''} ${p.year || ''}
`).join('') : '
N/A ';
const awardRows = (d.awards || []).length > 0 ? d.awards.map(a => `
${a.title || ''} ${a.org || ''} ${a.year || ''}
`).join('') : '
N/A ';
const memberRows = (d.membership || []).length > 0 ? d.membership.map((m, idx) => `
${idx + 1} ${m.body || ''} ${m.year || ''} ${m.type || ''}
`).join('') : '
N/A ';
popupBody.innerHTML = `
Photo
Full Name with qualification & Designation
${d.name}
${d.role}
Date of Birth ${personal.dob || 'N/A'}
Gender ${personal.gender || 'N/A'}
Nationality ${personal.nationality || 'N/A'}
Marital Status ${personal.maritalStatus || 'N/A'}
Address for communication ${personal.address || 'N/A'}
E-Mail (Official) ${personal.officialEmail || 'N/A'}
Mobile No ${personal.mobile || 'N/A'}
E-Mail (Personal) ${personal.personalEmail || 'N/A'}
Joining Date ${d.joiningDate || 'N/A'}
Present Post ${d.role || 'N/A'}
Employee ID ${ids.employeeId || 'N/A'}
APAAR ID ${ids.apaar || 'N/A'}
VIDWAN ID ${ids.vidwan || 'N/A'}
ORCID ID ${ids.orcid || 'N/A'}
Google Scholar ID ${ids.googleScholar || 'N/A'}
LinkedIn ID ${ids.linkedin || 'N/A'}
PROFESSIONAL EXPERIENCE
Teaching/Industrial Institution/Organization Designation Duration
${experienceRows}
ACADEMIC RECORD
Degree Awarding Institution Major Field Year
${academicsRows}
RESEARCH AND PUBLICATIONS
Research Area: ${d.research?.area || 'N/A'}
Journal Publications
National / International Topic Journal Year
${journalRows}
Conference Publications
National / International Topic Conference Year
${conferenceRows}
Book/Book Chapter
Type Title Authors Publisher ISBN Year
${bookRows}
CERTIFICATE COURSES
Course Title Issuing Organization Duration Year Mode
${certRows}
PATENTS
Title of the Patent Inventors Patent/App No Status Year
${patentRows}
AWARDS/ACHIEVEMENTS
Title Awarded By Year
${awardRows}
MEMBERSHIP IN PROFESSIONAL BODIES
S.No Professional Body Year of Joining Type
${memberRows}
Signature of the faculty with date
`;
modal.classList.remove('hidden');
modal.classList.add('flex');
}
function closeModal() {
const modal = document.getElementById('faculty-modal');
modal.classList.add('hidden');
modal.classList.remove('flex');
}
// Smooth scroll for sub-nav
document.querySelectorAll('a[href^="#"]').forEach(anchor => {
anchor.addEventListener('click', function (e) {
e.preventDefault();
document.querySelector(this.getAttribute('href')).scrollIntoView({
behavior: 'smooth'
});
});
});