From 3c5b2a361cb1b2083ab01a9dd48f531500a107ea Mon Sep 17 00:00:00 2001 From: pspriyanshu601 Date: Sun, 12 May 2024 16:52:18 +0530 Subject: [PATCH] iitism api completed --- New_APIs/IIT-ism-subjects-api/Readme.md | 346 + .../assets/course_info.js | 15929 ++++++++++++++++ .../assets/course_names.js | 4368 +++++ New_APIs/IIT-ism-subjects-api/index.js | 27 + .../IIT-ism-subjects-api/package-lock.json | 706 + New_APIs/IIT-ism-subjects-api/package.json | 16 + .../IIT-ism-subjects-api/routes/instructor.js | 37 + .../IIT-ism-subjects-api/routes/subjects.js | 92 + .../IIT-ism-subjects-api/routes/timeTable.js | 45 + 9 files changed, 21566 insertions(+) create mode 100644 New_APIs/IIT-ism-subjects-api/Readme.md create mode 100644 New_APIs/IIT-ism-subjects-api/assets/course_info.js create mode 100644 New_APIs/IIT-ism-subjects-api/assets/course_names.js create mode 100644 New_APIs/IIT-ism-subjects-api/index.js create mode 100644 New_APIs/IIT-ism-subjects-api/package-lock.json create mode 100644 New_APIs/IIT-ism-subjects-api/package.json create mode 100644 New_APIs/IIT-ism-subjects-api/routes/instructor.js create mode 100644 New_APIs/IIT-ism-subjects-api/routes/subjects.js create mode 100644 New_APIs/IIT-ism-subjects-api/routes/timeTable.js diff --git a/New_APIs/IIT-ism-subjects-api/Readme.md b/New_APIs/IIT-ism-subjects-api/Readme.md new file mode 100644 index 0000000..f4b8181 --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/Readme.md @@ -0,0 +1,346 @@ + + +# IIT ISM Subjects API Documantation + +base_url= http://localhost:3000 + +## Get timetable of all the subjects + +Example Request + +**GET** `http://localhost:3000/timeTable/allCourses` + + +Example Response + +``` +{ + "success": true, + "message": "Extracted all timetables successfully", + "timeTable": [ + { + "code": "CHD401", + "name": "Petrochemical Technology", + "day": "Monday", + "time": "10:00-10:50", + "room": "CHE-401" + }, + { + "code": "CHD401", + "name": "Petrochemical Technology", + "day": "Monday", + "time": "09:00-09:50", + "room": "CHE-401" + } +} +``` + + + +## Get timetable of a particular subject + +**GET** `http://localhost:3000/timeTable/courseCode/:courseCode` + +*Expected Course_code : First three characters [A-Z] next three [100-599]* + +Example Response + +``` +{ + "success": true, + "message": "Extracted all timetables successfully", + "timeTable": [ + [ + [ + "Monday", + "10:00-10:50", + "CHE-401" + ], + [ + "Monday", + "09:00-09:50", + "CHE-401" + ], + [ + "Tuesday", + "11:00-11:50", + "CHE-401" + ], + [ + "Wednesday", + "11:00-11:50", + "CHE-401" + ], + [ + "Wednesday", + "09:00-09:50", + "CHE-401" + ], + [ + "Friday", + "10:00-10:50", + "CHE-401" + ] + ] + ] +} +``` + + +## Get all subjects names + + +**GET** `http://localhost:3000/subject/allSubjectNames` + +Example Response + +``` +{ + "success": true, + "message": "Extracted all subject names successfully", + "allSubjectNames": [ + { + "id": 0, + "name": "MS CHD401 - Petrochemical Technology" + }, + { + "id": 1, + "name": "MS CHD408 - Process Data Analytics" + } +} +``` + +## Get all information of a particular subject + + +**GET** `http://localhost:3000/subject/courseCode/:courseCode` + +*Expected Course_code : First three characters [A-Z] next three [100-599]* + +Example Response + +``` +{ + "success": true, + "message": "Extracted all info of subject successfully", + "subjectData": [ + { + "id": 0, + "code": "CHD401", + "name": "Petrochemical Technology", + "instructor": "Paidinaidu Paluri", + "department": "Chemical Engineering", + "type": "Department Elective (DE)", + "link": "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD401.pdf", + "credits": "3-0-0", + "timetable": [ + [ + "Monday", + "10:00-10:50", + "CHE-401" + ], + [ + "Monday", + "09:00-09:50", + "CHE-401" + ], + [ + "Tuesday", + "11:00-11:50", + "CHE-401" + ], + [ + "Wednesday", + "11:00-11:50", + "CHE-401" + ], + [ + "Wednesday", + "09:00-09:50", + "CHE-401" + ], + [ + "Friday", + "10:00-10:50", + "CHE-401" + ] + ], + "semester": "MS" + } + ] +} +``` + +## Get all subjects of monsoon/winter semester + + +**GET** `http://localhost:3000/subject/semester/:type` + +Example Response + +``` +{ + "success": true, + "message": "Extracted all subject of monsoon successfully", + "allSubjectNames": [ + { + "id": 0, + "name": "MS CHD401 - Petrochemical Technology" + }, + { + "id": 1, + "name": "MS CHD408 - Process Data Analytics" + } +} +``` + +## Get all subjects of a particular department + + +**GET** `http://localhost:3000/subject//departmentName/:departmentName` + +*Allowed Filters: {CSE,EE,ECE,CVE,CE,PHY,ESE,FME,ESE,PE}* + +Example Response + +``` +{ + "success": true, + "message": "Extracted all info of subject successfully", + "subjectData": [ + { + "id": 0, + "code": "CHD401", + "name": "Petrochemical Technology", + "instructor": "Paidinaidu Paluri", + "department": "Chemical Engineering", + "type": "Department Elective (DE)", + "link": "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD401.pdf", + "credits": "3-0-0", + "timetable": [ + [ + "Monday", + "10:00-10:50", + "CHE-401" + ], + [ + "Monday", + "09:00-09:50", + "CHE-401" + ], + [ + "Tuesday", + "11:00-11:50", + "CHE-401" + ], + [ + "Wednesday", + "11:00-11:50", + "CHE-401" + ], + [ + "Wednesday", + "09:00-09:50", + "CHE-401" + ], + [ + "Friday", + "10:00-10:50", + "CHE-401" + ] + ], + "semester": "MS" +} +``` + +## Get all subjects of a particular subject type + + +**GET** `http://localhost:3000/subjectType/:subjectType` + +*Expected subject type DE,OE,DC,IC* + + +Example Response + +``` + { + "id": 324, + "code": "CHC305", + "name": "Mass Transfer Lab", + "instructor": "Suman Dutta,Paidinaidu Paluri", + "department": "Chemical Engineering", + "type": "Department Compulsory (DC)", + "link": "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC305.pdf", + "credits": "0-0-3", + "timetable": [], + "semester": "MS" + }, + +``` + + +## Check instructor name for all the subjects +**GET** `http://localhost:3000/instructor/allCourses` + + +Example Response + +``` +{ + "success": true, + "message": "Extracted all instructor names successfully", + "instructorData": [ + { + "code": "CHD401", + "name": "Petrochemical Technology", + "instructor": "Paidinaidu Paluri" + }, + { + "code": "CHD408", + "name": "Process Data Analytics", + "instructor": "Pantula Devi Priyanka" + }, + { + "code": "CHD411", + "name": "Catalytic Reaction Engineering", + "instructor": "Lutukurthi D N V V Konda" + }, + { + "code": "CHO401", + "name": "Process Integration", + "instructor": "Soumyajit Sen Gupta" + }, + { + "code": "CHO402", + "name": "Biofuels & Biomass Conversion Technology", + "instructor": "Ejaz Ahmad" + }, + { + "code": "CSD404", + "name": "Computer Graphics", + "instructor": "Sushanta Mukhopadhyay" + }, + +``` + +## Gets instructor name of a particular subject + +**GET** `http://localhost:3000/instructor/courseCode/:courseCode` + + +Example Response + +``` +{ + "success": true, + "message": "Extracted all timetables successfully", + "instructorData": [ + { + "name": "Petrochemical Technology", + "code": "CHD401", + "instructor": "Paidinaidu Paluri" + } + ] +} +``` \ No newline at end of file diff --git a/New_APIs/IIT-ism-subjects-api/assets/course_info.js b/New_APIs/IIT-ism-subjects-api/assets/course_info.js new file mode 100644 index 0000000..327ada5 --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/assets/course_info.js @@ -0,0 +1,15929 @@ +const data = [ + { + id: 0, + code: "CHD401", + name: "Petrochemical Technology", + instructor: "Paidinaidu Paluri", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD401.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "CHE-401"], + ["Monday", "09:00-09:50", "CHE-401"], + ["Tuesday", "11:00-11:50", "CHE-401"], + ["Wednesday", "11:00-11:50", "CHE-401"], + ["Wednesday", "09:00-09:50", "CHE-401"], + ["Friday", "10:00-10:50", "CHE-401"], + ], + semester: "MS", + }, + { + id: 1, + code: "CHD408", + name: "Process Data Analytics", + instructor: "Pantula Devi Priyanka", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD408.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "CHE-401"], + ["Tuesday", "09:00-09:50", "CHE-401"], + ["Wednesday", "12:00-12:50", "CHE-401"], + ["Friday", "12:00-12:50", "CHE-401"], + ], + semester: "MS", + }, + { + id: 2, + code: "CHD411", + name: "Catalytic Reaction Engineering", + instructor: "Lutukurthi D N V V Konda", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD411.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "CHE-423"], + ["Wednesday", "10:00-10:50", "CHE-423"], + ["Wednesday", "11:00-11:50", "CHE-423"], + ["Thursday", "09:00-09:50", "CHE-423"], + ["Thursday", "12:00-12:50", "CHE-423"], + ["Friday", "09:00-09:50", "CHE-423"], + ], + semester: "MS", + }, + { + id: 3, + code: "CHO401", + name: "Process Integration", + instructor: "Soumyajit Sen Gupta", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO401.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "CHE-401"], + ["Thursday", "11:00-11:50", "CHE-401"], + ["Friday", "11:00-11:50", "CHE-401"], + ], + semester: "MS", + }, + { + id: 4, + code: "CHO402", + name: "Biofuels & Biomass Conversion Technology", + instructor: "Ejaz Ahmad", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO402.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "CHE-401"], + ["Wednesday", "10:00-10:50", "CHE-401"], + ["Thursday", "12:00-12:50", "CHE-401"], + ["Thursday", "10:00-10:50", "CHE-401"], + ], + semester: "MS", + }, + { + id: 5, + code: "CSD404", + name: "Computer Graphics", + instructor: "Sushanta Mukhopadhyay", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD404.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "PET 3"], + ["Monday", "12:00-12:50", "PET 3"], + ["Tuesday", "09:00-09:50", "PET 3"], + ["Wednesday", "09:00-09:50", "PET 3"], + ["Wednesday", "12:00-12:50", "PET 3"], + ["Friday", "12:00-12:50", "PET 3"], + ], + semester: "MS", + }, + { + id: 6, + code: "CSD411", + name: "Introduction to Deep Learning", + instructor: "Monidipa Das", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD411.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", " "], + ["Monday", "12:00-12:50", " "], + ["Tuesday", "09:00-09:50", " "], + ["Wednesday", "09:00-09:50", " "], + ["Wednesday", "12:00-12:50", " "], + ["Friday", "12:00-12:50", " "], + ], + semester: "MS", + }, + { + id: 7, + code: "CSD511", + name: "Information Theory and Coding", + instructor: "Gadadhar Sahoo", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD511.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-G14"], + ["Wednesday", "10:00-10:50", "LC-II-G14"], + ["Wednesday", "11:00-11:50", "LC-II-G14"], + ["Thursday", "09:00-09:50", "LC-II-G14"], + ["Thursday", "12:00-12:50", "LC-II-G14"], + ["Friday", "09:00-09:50", "LC-II-G14"], + ], + semester: "MS", + }, + { + id: 8, + code: "CSD520", + name: "VLSI Design and Testing", + instructor: "Tanusree Kaibartta", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD520.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", " "], + ["Wednesday", "11:00-11:50", " "], + ["Wednesday", "10:00-10:50", " "], + ["Thursday", "12:00-12:50", " "], + ["Thursday", "09:00-09:50", " "], + ["Friday", "09:00-09:50", " "], + ], + semester: "MS", + }, + { + id: 9, + code: "CSO404", + name: "Cryptography", + instructor: "Hari Om", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO404.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G15"], + ["Wednesday", "10:00-10:50", "LC-II-G15"], + ["Thursday", "12:00-12:50", "LC-II-G15"], + ["Thursday", "10:00-10:50", "LC-II-G15"], + ["Friday", "12:00-12:50", "LC-II-G15"], + ], + semester: "MS", + }, + { + id: 10, + code: "CSO504", + name: "Machine Learning", + instructor: "Rajendra Pamula", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G15"], + ["Tuesday", "12:00-12:50", "LC-II-G15"], + ["Tuesday", "11:00-11:50", "LC-II-G15"], + ["Wednesday", "12:00-12:50", "LC-II-G15"], + ["Thursday", "11:00-11:50", "LC-II-G15"], + ["Friday", "11:00-11:50", "LC-II-G15"], + ], + semester: "MS", + }, + { + id: 11, + code: "CSO505", + name: "Soft Computing", + instructor: "Annavarapu Chandra Sekhara Rao", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO505.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "PET 3"], + ["Tuesday", "11:00-11:50", "PET 3"], + ["Wednesday", "11:00-11:50", "PET 3"], + ["Friday", "10:00-10:50", "PET 3"], + ], + semester: "MS", + }, + { + id: 12, + code: "CED401", + name: "Traffic Engineering and Management", + instructor: "Leeza Malik,Smruti Sourava Mohapatra", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED401.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C12"], + ["Monday", "12:00-12:50", "LC-II-C12"], + ["Tuesday", "09:00-09:50", "LC-II-C12"], + ["Wednesday", "09:00-09:50", "LC-II-C12"], + ["Wednesday", "12:00-12:50", "LC-II-C12"], + ["Friday", "12:00-12:50", "LC-II-C12"], + ], + semester: "MS", + }, + { + id: 13, + code: "CED403", + name: "Advanced Hydrology", + instructor: "Shushobhit Chaudhary", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED403.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", " "], + ["Thursday", "11:00-11:50", " "], + ["Friday", "11:00-11:50", " "], + ], + semester: "MS", + }, + { + id: 14, + code: "CED501", + name: "Computational Solid Mechanics", + instructor: "Pranesh Roy", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED501.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C12"], + ["Wednesday", "10:00-10:50", "LC-II-C12"], + ["Thursday", "12:00-12:50", "LC-II-C12"], + ["Thursday", "10:00-10:50", "LC-II-C12"], + ], + semester: "MS", + }, + { + id: 15, + code: "CED531", + name: "Advanced Design of Structures", + instructor: "Sekhar Chandra Dutta", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED531.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-C12"], + ["Wednesday", "11:00-11:50", "LC-II-C12"], + ["Thursday", "09:00-09:50", "LC-II-C12"], + ["Friday", "09:00-09:50", "LC-II-C12"], + ], + semester: "MS", + }, + { + id: 16, + code: "CEO528", + name: "Ground Improvement and Geosynthetics", + instructor: "Sowmiya Chawla", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO528.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C11"], + ["Monday", "10:00-10:50", "LC-II-C11"], + ["Tuesday", "11:00-11:50", "LC-II-C11"], + ["Wednesday", "09:00-09:50", "LC-II-C11"], + ["Wednesday", "11:00-11:50", "LC-II-C11"], + ["Friday", "10:00-10:50", "LC-II-C11"], + ], + semester: "MS", + }, + { + id: 17, + code: "ECD403", + name: "Computer Networks", + instructor: "Abhishek Grover", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD403.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G14"], + ["Monday", "12:00-12:50", "LC-II-G14"], + ["Tuesday", "09:00-09:50", "LC-II-G14"], + ["Wednesday", "09:00-09:50", "LC-II-G14"], + ["Wednesday", "12:00-12:50", "LC-II-G14"], + ["Friday", "12:00-12:50", "LC-II-G14"], + ], + semester: "MS", + }, + { + id: 18, + code: "ECD405", + name: "Digital Systems Design using HDL", + instructor: "Jeevesh Kumar", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD405.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-I-C12"], + ["Wednesday", "10:00-10:50", "LC-I-C12"], + ["Wednesday", "11:00-11:50", "LC-I-C12"], + ["Thursday", "09:00-09:50", "LC-I-C12"], + ["Thursday", "12:00-12:50", "LC-I-C12"], + ["Friday", "09:00-09:50", "LC-I-C12"], + ], + semester: "MS", + }, + { + id: 19, + code: "ECD415", + name: "Optical Communication", + instructor: "Sanjeev Kumar Raghuwanshi", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD415.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G7"], + ["Tuesday", "12:00-12:50", "LC-II-G7"], + ["Tuesday", "11:00-11:50", "LC-II-G7"], + ["Wednesday", "12:00-12:50", "LC-II-G7"], + ["Thursday", "11:00-11:50", "LC-II-G7"], + ["Friday", "11:00-11:50", "LC-II-G7"], + ], + semester: "MS", + }, + { + id: 20, + code: "ECO501", + name: "Internet of Things", + instructor: "Aman Sikri", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G13"], + ["Monday", "09:00-09:50", "LC-II-G13"], + ["Tuesday", "11:00-11:50", "LC-II-G13"], + ["Wednesday", "11:00-11:50", "LC-II-G13"], + ["Wednesday", "09:00-09:50", "LC-II-G13"], + ["Friday", "10:00-10:50", "LC-II-G13"], + ], + semester: "MS", + }, + { + id: 21, + code: "ECO561", + name: "Embedded System Design", + instructor: "Mrinal Sen", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO561.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G7"], + ["Wednesday", "10:00-10:50", "LC-II-G7"], + ["Thursday", "12:00-12:50", "LC-II-G7"], + ["Thursday", "10:00-10:50", "LC-II-G7"], + ["Friday", "12:00-12:50", "LC-II-G7"], + ], + semester: "MS", + }, + { + id: 22, + code: "EED401", + name: "Power System Protection and Switchgear", + instructor: "Paresh Kumar Nayak", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED401.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G3"], + ["Monday", "12:00-12:50", "LC-II-G3"], + ["Tuesday", "09:00-09:50", "LC-II-G3"], + ["Wednesday", "09:00-09:50", "LC-II-G3"], + ["Wednesday", "12:00-12:50", "LC-II-G3"], + ["Friday", "12:00-12:50", "LC-II-G3"], + ], + semester: "MS", + }, + { + id: 23, + code: "EED403", + name: "Industrial Power Electronics", + instructor: "Anirban Ghoshal", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED403.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-C2"], + ["Wednesday", "10:00-10:50", "LC-II-C2"], + ["Wednesday", "11:00-11:50", "LC-II-C2"], + ["Thursday", "09:00-09:50", "LC-II-C2"], + ["Thursday", "12:00-12:50", "LC-II-C2"], + ["Friday", "09:00-09:50", "LC-II-C2"], + ], + semester: "MS", + }, + { + id: 24, + code: "EEO403", + name: "Digital Signal Processing", + instructor: "Sethupathy S", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO403.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-C2"], + ["Tuesday", "11:00-11:50", "LC-II-C2"], + ["Wednesday", "12:00-12:50", "LC-II-C2"], + ["Thursday", "11:00-11:50", "LC-II-C2"], + ["Friday", "11:00-11:50", "LC-II-C2"], + ], + semester: "MS", + }, + { + id: 25, + code: "EEO404", + name: "Renewable Energy Systems and Energy Audit", + instructor: "Pradip Kumar Sadhu", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO404.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G10"], + ["Wednesday", "10:00-10:50", "LC-II-G10"], + ["Thursday", "12:00-12:50", "LC-II-G10"], + ["Thursday", "10:00-10:50", "LC-II-G10"], + ["Friday", "12:00-12:50", "LC-II-G10"], + ], + semester: "MS", + }, + { + id: 26, + code: "EEO405", + name: "Industrial Automation", + instructor: "Ashok Kumar", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO405.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C2"], + ["Monday", "09:00-09:50", "LC-II-C2"], + ["Wednesday", "09:00-09:50", "LC-II-C2"], + ["Friday", "10:00-10:50", "LC-II-C2"], + ], + semester: "MS", + }, + { + id: 27, + code: "ESD401", + name: "Biodiversity Conservation", + instructor: "Anshumali", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD401.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-G6"], + ["Wednesday", "10:00-10:50", "LC-II-G6"], + ["Wednesday", "11:00-11:50", "LC-II-G6"], + ["Thursday", "09:00-09:50", "LC-II-G6"], + ["Thursday", "12:00-12:50", "LC-II-G6"], + ["Friday", "09:00-09:50", "LC-II-G6"], + ], + semester: "MS", + }, + { + id: 28, + code: "ESD405", + name: "Climate Vulnerability and Risk Analysis", + instructor: "Vittal H", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD405.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G6"], + ["Tuesday", "11:00-11:50", "LC-II-G6"], + ["Wednesday", "12:00-12:50", "LC-II-G6"], + ["Thursday", "11:00-11:50", "LC-II-G6"], + ["Friday", "11:00-11:50", "LC-II-G6"], + ], + semester: "MS", + }, + { + id: 29, + code: "ESD502", + name: "Environmental Biotechnology", + instructor: "Subodh Kumar Maiti", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD502.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G6"], + ["Tuesday", "09:00-09:50", "LC-II-G6"], + ["Wednesday", "09:00-09:50", "LC-II-G6"], + ["Friday", "12:00-12:50", "LC-II-G6"], + ], + semester: "MS", + }, + { + id: 30, + code: "ESD511", + name: "Aerosols in the Atmosphere", + instructor: "Saifi Izhar", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD511.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G6"], + ["Thursday", "10:00-10:50", "LC-II-G6"], + ], + semester: "MS", + }, + { + id: 31, + code: "ESO405", + name: "Cleaner Energy", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESO405.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C5"], + ["Monday", "09:00-09:50", "LC-II-C5"], + ["Tuesday", "11:00-11:50", "LC-II-C5"], + ["Wednesday", "11:00-11:50", "LC-II-C5"], + ["Wednesday", "09:00-09:50", "LC-II-C5"], + ["Friday", "10:00-10:50", "LC-II-C5"], + ], + semester: "MS", + }, + { + id: 32, + code: "FMD403", + name: "Engineering Materials Selection and Design", + instructor: "Avanish Kumar", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD403.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-C10"], + ["Wednesday", "10:00-10:50", "LC-II-C10"], + ["Wednesday", "11:00-11:50", "LC-II-C10"], + ["Thursday", "12:00-12:50", "LC-II-C10"], + ["Thursday", "09:00-09:50", "LC-II-C10"], + ["Friday", "09:00-09:50", "LC-II-C10"], + ], + semester: "MS", + }, + { + id: 33, + code: "FMD461", + name: "Computational Techniques and Modelling", + instructor: "Nikkam Suresh", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD461.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C10"], + ["Monday", "12:00-12:50", "LC-II-C10"], + ["Tuesday", "09:00-09:50", "LC-II-C10"], + ["Wednesday", "09:00-09:50", "LC-II-C10"], + ["Wednesday", "12:00-12:50", "LC-II-C10"], + ["Friday", "12:00-12:50", "LC-II-C10"], + ], + semester: "MS", + }, + { + id: 34, + code: "FMD515", + name: "Thermochemical Conversion of Coal and Biomass", + instructor: "Rajasekhar Reddy Busigari", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD515.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", " "], + ["Thursday", "10:00-10:50", " "], + ], + semester: "MS", + }, + { + id: 35, + code: "FMO545", + name: "Equipment Design", + instructor: "Rajasekhar Reddy Busigari", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMO545.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-C9"], + ["Tuesday", "12:00-12:50", "LC-II-C9"], + ["Tuesday", "11:00-11:50", "LC-II-C9"], + ["Wednesday", "12:00-12:50", "LC-II-C9"], + ["Thursday", "11:00-11:50", "LC-II-C9"], + ["Friday", "11:00-11:50", "LC-II-C9"], + ], + semester: "MS", + }, + { + id: 36, + code: "FMO547", + name: "Additive Manufacturing", + instructor: "Kesavan Ravi", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMO547.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C10"], + ["Tuesday", "11:00-11:50", "LC-II-C10"], + ["Friday", "10:00-10:50", "LC-II-C10"], + ], + semester: "MS", + }, + { + id: 37, + code: "MND400", + name: "Rock Excavation Engineering", + instructor: "V M S R Murthy", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND400.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G4"], + ["Monday", "12:00-12:50", "LC-II-G4"], + ["Tuesday", "09:00-09:50", "LC-II-G4"], + ["Wednesday", "09:00-09:50", "LC-II-G4"], + ["Wednesday", "12:00-12:50", "LC-II-G4"], + ["Friday", "12:00-12:50", "LC-II-G4"], + ], + semester: "MS", + }, + { + id: 38, + code: "MND401", + name: "Advanced Mine Ventilation", + instructor: "Devi Prasad Mishra", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND401.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G2"], + ["Monday", "12:00-12:50", "LC-II-G2"], + ["Tuesday", "09:00-09:50", "LC-II-G2"], + ["Wednesday", "12:00-12:50", "LC-II-G2"], + ["Wednesday", "09:00-09:50", "LC-II-G2"], + ["Friday", "12:00-12:50", "LC-II-G2"], + ], + semester: "MS", + }, + { + id: 39, + code: "MND402", + name: "Open Pit Slope Analysis and Design", + instructor: "Radhakanta Koner", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND402.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-G2"], + ["Wednesday", "10:00-10:50", "LC-II-G2"], + ["Wednesday", "11:00-11:50", "LC-II-G2"], + ["Thursday", "09:00-09:50", "LC-II-G2"], + ["Thursday", "12:00-12:50", "LC-II-G2"], + ["Friday", "09:00-09:50", "LC-II-G2"], + ], + semester: "MS", + }, + { + id: 40, + code: "MND403", + name: "Geospatial Technology in Mining", + instructor: "Mohammad Soyeb Alam", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND403.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-G4"], + ["Tuesday", "11:00-11:50", "LC-II-G4"], + ["Thursday", "11:00-11:50", "LC-II-G4"], + ["Friday", "11:00-11:50", "LC-II-G4"], + ], + semester: "MS", + }, + { + id: 41, + code: "MND405", + name: "Mine Safety Engineering", + instructor: "Partha Sarathi Paul", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND405.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G4"], + ["Wednesday", "10:00-10:50", "LC-II-G4"], + ["Thursday", "12:00-12:50", "LC-II-G4"], + ["Thursday", "10:00-10:50", "LC-II-G4"], + ], + semester: "MS", + }, + { + id: 42, + code: "MND406", + name: "Mine Environmental Engineering", + instructor: "Patitapaban Sahu", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND406.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G4"], + ["Wednesday", "11:00-11:50", "LC-II-G4"], + ["Friday", "10:00-10:50", "LC-II-G4"], + ], + semester: "MS", + }, + { + id: 43, + code: "MSO401", + name: "Principles of Economics", + instructor: "Mohd. Irfan", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MSO401.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 44, + code: "MSO402", + name: "Introduction to Financial Management", + instructor: "Niladri Das", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MSO402.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 45, + code: "MSO403", + name: "Foundations of Management and Organizational Behaviour", + instructor: "Saumya Singh", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MSO403.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", " "], + ["Friday", "10:00-10:50", " "], + ], + semester: "MS", + }, + { + id: 46, + code: "HSD405", + name: "Introduction to Environmental Humanities", + instructor: "Rajni Singh", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSD405.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 47, + code: "HSD525", + name: "Advance Course in Applied Ethics", + instructor: "Ajit Kumar Behura", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSD525.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "LC-II-G14"], + ["Thursday", "11:00-11:50", "LC-II-G14"], + ["Friday", "11:00-11:50", "LC-II-G14"], + ], + semester: "MS", + }, + { + id: 48, + code: "HSO309", + name: "Fundamental of Sociology", + instructor: "Sangay Tamang", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSO309.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C14"], + ["Wednesday", "10:00-10:50", "LC-II-C14"], + ["Thursday", "12:00-12:50", "LC-II-C14"], + ["Thursday", "10:00-10:50", "LC-II-C14"], + ["Friday", "12:00-12:50", "LC-II-C14"], + ], + semester: "MS", + }, + { + id: 49, + code: "HSO402", + name: "Computational Psychology", + instructor: "Ahmed Sameer", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSO402.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 50, + code: "HSO403", + name: "Indian Society and Culture", + instructor: "Sruti Kanungo", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSO403.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 51, + code: "HSO404", + name: "Sociology of Health", + instructor: "Dipannita Chand", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSO404.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 52, + code: "MED539", + name: "Fundamentals of Aerodynamics", + instructor: "Swagata Bhaumik", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED539.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-C3"], + ["Wednesday", "10:00-10:50", "LC-II-C3"], + ["Wednesday", "11:00-11:50", "LC-II-C3"], + ["Thursday", "09:00-09:50", "LC-II-C3"], + ["Thursday", "12:00-12:50", "LC-II-C3"], + ["Friday", "09:00-09:50", "LC-II-C3"], + ], + semester: "MS", + }, + { + id: 53, + code: "MED540", + name: "Fundamentals of Aeroacoustics", + instructor: "Subramanian Narayan", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED540.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C15"], + ["Monday", "12:00-12:50", "LC-II-C15"], + ["Tuesday", "09:00-09:50", "LC-II-C15"], + ["Wednesday", "09:00-09:50", "LC-II-C15"], + ["Wednesday", "12:00-12:50", "LC-II-C15"], + ["Friday", "12:00-12:50", "LC-II-C15"], + ], + semester: "MS", + }, + { + id: 54, + code: "MEO528", + name: "Robotics", + instructor: "Arun Dayal Udai", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO528.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G16"], + ["Monday", "09:00-09:50", "LC-II-G16"], + ["Tuesday", "11:00-11:50", "LC-II-G16"], + ["Wednesday", "11:00-11:50", "LC-II-G16"], + ["Wednesday", "09:00-09:50", "LC-II-G16"], + ["Friday", "10:00-10:50", "LC-II-G16"], + ], + semester: "MS", + }, + { + id: 55, + code: "MEO579", + name: "Computational Fluid Dynamics", + instructor: "Subhankar Sen", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO579.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "Mech G2"], + ["Wednesday", "10:00-10:50", "Mech G2"], + ["Thursday", "12:00-12:50", "Mech G2"], + ["Thursday", "10:00-10:50", "Mech G2"], + ["Friday", "12:00-12:50", "Mech G2"], + ], + semester: "MS", + }, + { + id: 56, + code: "MED401", + name: "Energy Conversion Equipment", + instructor: "Tanweer Alam", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED401.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-C14"], + ["Wednesday", "11:00-11:50", "LC-II-C14"], + ["Thursday", "09:00-09:50", "LC-II-C14"], + ["Friday", "09:00-09:50", "LC-II-C14"], + ], + semester: "MS", + }, + { + id: 57, + code: "MED549", + name: "Cryogenic Engineering", + instructor: "Subrata Kumar Ghosh", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED549.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-I-C8"], + ["Monday", "12:00-12:50", "LC-I-C8"], + ["Tuesday", "09:00-09:50", "LC-I-C8"], + ["Wednesday", "09:00-09:50", "LC-I-C8"], + ["Wednesday", "12:00-12:50", "LC-I-C8"], + ["Friday", "12:00-12:50", "LC-I-C8"], + ], + semester: "MS", + }, + { + id: 58, + code: "MEO534", + name: "Automation and Control", + instructor: "Sanjoy K Ghoshal", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO534.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 59, + code: "MMO504", + name: "Advanced Fluid Power Systems and Control", + instructor: "Ajit Kumar", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMO504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "Mech G1"], + ["Tuesday", "12:00-12:50", "Mech G1"], + ["Tuesday", "11:00-11:50", "Mech G1"], + ["Wednesday", "12:00-12:50", "Mech G1"], + ["Thursday", "11:00-11:50", "Mech G1"], + ["Friday", "11:00-11:50", "Mech G1"], + ], + semester: "MS", + }, + { + id: 60, + code: "PED401", + name: "Offshore Drilling and Petroleum Production Practices", + instructor: "Raj Kiran", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED401.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 61, + code: "PED402", + name: "Enhanced Oil Recovery Techniques", + instructor: "Ajay Mandal", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED402.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "PET 1"], + ["Wednesday", "10:00-10:50", "PET 1"], + ["Wednesday", "11:00-11:50", "PET 1"], + ["Thursday", "12:00-12:50", "PET 1"], + ["Thursday", "09:00-09:50", "PET 1"], + ["Friday", "09:00-09:50", "PET 1"], + ], + semester: "MS", + }, + { + id: 62, + code: "PEO401", + name: "Petroleum Environment, Health and Safety Practices", + instructor: "Vinay Kumar Rajak", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO401.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "PET 1"], + ["Tuesday", "11:00-11:50", "PET 1"], + ["Wednesday", "12:00-12:50", "PET 1"], + ["Thursday", "11:00-11:50", "PET 1"], + ["Friday", "11:00-11:50", "PET 1"], + ], + semester: "MS", + }, + { + id: 63, + code: "PEO402", + name: "Well Performance", + instructor: "Rajeev Upadhyay", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO402.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "PET 1"], + ["Thursday", "10:00-10:50", "PET 1"], + ["Friday", "12:00-12:50", "PET 1"], + ], + semester: "MS", + }, + { + id: 64, + code: "PEO406", + name: "Reservoir Geomechanics", + instructor: "Sayantan Ghosh", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO406.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "PET 1"], + ["Monday", "10:00-10:50", "PET 1"], + ["Wednesday", "09:00-09:50", "PET 1"], + ["Friday", "10:00-10:50", "PET 1"], + ], + semester: "MS", + }, + { + id: 65, + code: "PHD501", + name: "Advanced Quantum Mechanics", + instructor: "Binata Panda", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "NAC Hall"], + ["Monday", "12:00-12:50", "NAC Hall"], + ["Tuesday", "09:00-09:50", "NAC Hall"], + ["Wednesday", "09:00-09:50", "NAC Hall"], + ["Wednesday", "12:00-12:50", "NAC Hall"], + ["Friday", "12:00-12:50", "NAC Hall"], + ], + semester: "MS", + }, + { + id: 66, + code: "PHD506", + name: "Characterization Techniques", + instructor: "Asit Kumar Kar", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD506.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-I-C9"], + ["Monday", "12:00-12:50", "LC-I-C9"], + ["Tuesday", "09:00-09:50", "LC-I-C9"], + ["Wednesday", "12:00-12:50", "LC-I-C9"], + ["Wednesday", "09:00-09:50", "LC-I-C9"], + ["Friday", "12:00-12:50", "LC-I-C9"], + ], + semester: "MS", + }, + { + id: 67, + code: "PHD577", + name: "Numerical Methods and Simulation", + instructor: "Bobby Kachappilly Antony", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD577.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 68, + code: "PHO400", + name: "Nanoelectronics and Nanophotonics", + instructor: "Prashant Kumar Sharma", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO400.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-I-C9"], + ["Wednesday", "10:00-10:50", "LC-I-C9"], + ["Thursday", "12:00-12:50", "LC-I-C9"], + ["Thursday", "10:00-10:50", "LC-I-C9"], + ], + semester: "MS", + }, + { + id: 69, + code: "PHO504", + name: "Optoelectronic Materials and Devices", + instructor: "R Thangavel", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO504.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-I-C9"], + ["Tuesday", "11:00-11:50", "LC-I-C9"], + ["Thursday", "11:00-11:50", "LC-I-C9"], + ["Friday", "11:00-11:50", "LC-I-C9"], + ], + semester: "MS", + }, + { + id: 70, + code: "GLC201", + name: "Crystallography and Mineralogy", + instructor: "Alik Sundar Majumdar", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "Petrology Lab"], + ["Tuesday", "11:00-11:50", "Petrology Lab"], + ["Wednesday", "11:00-11:50", "Petrology Lab"], + ], + semester: "MS", + }, + { + id: 71, + code: "GLC202", + name: "Physical and Structural Geology", + instructor: "Pranab Das", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC202.pdf", + credits: "3-0-0", + timetable: [["Monday", "11:00-11:50", " "]], + semester: "MS", + }, + { + id: 72, + code: "GLC203", + name: "Crystallography and Optical Mineralogy Practical", + instructor: "Alik Sundar Majumdar", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC203.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "Petrology Lab"], + ["Monday", "04:00-04:50", "Petrology Lab"], + ], + semester: "MS", + }, + { + id: 73, + code: "GLC204", + name: "Structural Geology Practical", + instructor: "Pranab Das", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC204.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "Petrology Lab"], + ["Thursday", "04:00-04:50", "Petrology Lab"], + ], + semester: "MS", + }, + { + id: 74, + code: "GLE201", + name: "Geology for Engineering and Sciences", + instructor: "Pranab Das,Prabodha Ranjan Sahoo", + department: "Applied Geology", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLE201.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 75, + code: "GPC501", + name: "Solid Earth Geophysics", + instructor: "Giri Yellalacheruvu", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GPC501.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", " "], + ["Wednesday", "05:00-05:50", " "], + ["Friday", "04:00-04:50", " "], + ], + semester: "MS", + }, + { + id: 76, + code: "GLC202", + name: "Physical and Structural Geology", + instructor: "Pranab Das", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GLC202.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 77, + code: "GLE203", + name: "Geology for Engineering and Sciences Practical", + instructor: "Mrinal Kanti Mukherjee", + department: "Applied Geophysics", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GLE203.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "05:00-05:50", " "], + ["Tuesday", "05:00-05:50", "Coal Geology Lab"], + ["Tuesday", "04:00-04:50", "Coal Geology Lab"], + ], + semester: "MS", + }, + { + id: 78, + code: "GPC201", + name: "Introduction to Rock Physics", + instructor: "Anil Kumar Chaubey", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC201.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "AGP Annexure 1st Floor"], + ["Thursday", "11:00-11:50", "AGP Annexure 1st Floor"], + ["Friday", "10:00-10:50", "AGP Annexure 1st Floor"], + ], + semester: "MS", + }, + { + id: 79, + code: "GPC202", + name: "Self-Potential Method: Theory and Application", + instructor: "Arun Singh", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "Annexe 102"], + ["Tuesday", "11:00-11:50", "Annexe 102"], + ["Wednesday", "11:00-11:50", "Annexe 102"], + ], + semester: "MS", + }, + { + id: 80, + code: "GPC203", + name: "Lab on Rock Physics", + instructor: "Anil Kumar Chaubey", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC203.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "AGP Annexure 1st Floor"], + ["Monday", "04:00-04:50", "AGP Annexure 1st Floor"], + ], + semester: "MS", + }, + { + id: 81, + code: "GPC204", + name: "Self-Potential Method Theory & Application Practical", + instructor: "Arun Singh", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC204.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "Remote Sensing Gravity Magnetic Lab"], + ["Thursday", "04:00-04:50", "Remote Sensing Gravity Magnetic Lab"], + ], + semester: "MS", + }, + { + id: 82, + code: "GPE202", + name: "Geophysical Prospecting", + instructor: "Saurabh Datta Gupta,Niptika Jana,Partha Pratim Mandal", + department: "Applied Geophysics", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G1"], + ["Tuesday", "09:00-09:50", "LC-II-G1"], + ["Wednesday", "09:00-09:50", "LC-II-G1"], + ], + semester: "MS", + }, + { + id: 83, + code: "MCC201", + name: "Modern Algebra", + instructor: "Abhay Kumar Singh", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-I-C18"], + ["Thursday", "10:00-10:50", "LC-I-C18"], + ["Friday", "11:00-11:50", "LC-I-C18"], + ], + semester: "MS", + }, + { + id: 84, + code: "MCC202", + name: "Computer Organization and Architecture", + instructor: "Ranjit Kumar Upadhyay", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-I-C18"], + ["Tuesday", "11:00-11:50", "LC-I-C18"], + ["Wednesday", "11:00-11:50", "LC-I-C18"], + ], + semester: "MS", + }, + { + id: 85, + code: "MCC203", + name: "Real Analysis", + instructor: "A Antony Selvan", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC203.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-I-C18"], + ["Thursday", "11:00-11:50", "LC-I-C18"], + ["Friday", "10:00-10:50", "LC-I-C18"], + ], + semester: "MS", + }, + { + id: 86, + code: "MCC204", + name: "Computer Organization and Architecture Practical", + instructor: "Ranjit Kumar Upadhyay", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC204.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "UG Lab-1"], + ["Monday", "04:00-04:50", "UG Lab-1"], + ], + semester: "MS", + }, + { + id: 87, + code: "MCC505", + name: "Probability & Statistics", + instructor: + "Nabakumar Jana,Atul Kumar Verma,Subhashis Chatterjee,Shuvashree Mondal", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC505.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 88, + code: "GLC502", + name: "Applied Geochemistry", + instructor: "Shushanta Sarangi", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC502.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "AGL-3"], + ["Tuesday", "05:00-05:50", "AGL-3"], + ["Thursday", "03:00-03:50", "AGL-3"], + ], + semester: "MS", + }, + { + id: 89, + code: "GLC503", + name: "Methods of Structural Geology", + instructor: "Mrinal Kanti Mukherjee", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC503.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "AGL-3"], + ["Wednesday", "04:00-04:50", "AGL-3"], + ["Friday", "03:00-03:50", "AGL-3"], + ], + semester: "MS", + }, + { + id: 90, + code: "GLC504", + name: "Micropaleontology and Vertebrate Palaeontology", + instructor: "Ajoy Kumar Bhaumik", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC504.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "AGL-3"], + ["Wednesday", "05:00-05:50", "AGL-3"], + ["Friday", "04:00-04:50", "AGL-3"], + ], + semester: "MS", + }, + { + id: 91, + code: "GLC506", + name: "Mineralogy and Geochemistry Practical", + instructor: "Shushanta Sarangi", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC506.pdf", + credits: "0-0-3", + timetable: [["Monday", "11:00-11:50", "Petrology Lab"]], + semester: "MS", + }, + { + id: 92, + code: "GLC507", + name: "Methods of Structural Geology Practical", + instructor: "Joseph Rohan D'souza", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC507.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "12:00-12:50", "AGL-3"], + ["Thursday", "11:00-11:50", "AGL-3"], + ], + semester: "MS", + }, + { + id: 93, + code: "GLC508", + name: "Micropaleontology and Vertebrate Paleontology Practical", + instructor: "Ajoy Kumar Bhaumik", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC508.pdf", + credits: "0-0-2", + timetable: [ + ["Friday", "11:00-11:50", "Paleontology Lab"], + ["Friday", "10:00-10:50", "Paleontology Lab"], + ], + semester: "MS", + }, + { + id: 94, + code: "GLO532", + name: "Environmental Geology", + instructor: "A S Venkatesh", + department: "Applied Geology", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLO532.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "LC-II-G10"], + ["Thursday", "02:00-02:50", "LC-II-G10"], + ["Friday", "02:00-02:50", "LC-II-G10"], + ], + semester: "MS", + }, + { + id: 95, + code: "GPC501", + name: "Solid Earth Geophysics", + instructor: "Giri Yellalacheruvu", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC501.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 96, + code: "GPC502", + name: "Gravity Method", + instructor: "Upendra K. Singh", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC502.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "AGP 516"], + ["Wednesday", "04:00-04:50", "AGP 516"], + ["Friday", "03:00-03:50", "AGP 516"], + ], + semester: "MS", + }, + { + id: 97, + code: "GPC504", + name: "Mathematical Functional Analysis", + instructor: "Swarandeep Sahoo", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "AGP 516"], + ["Tuesday", "05:00-05:50", "AGP 516"], + ["Thursday", "03:00-03:50", "AGP 516"], + ], + semester: "MS", + }, + { + id: 98, + code: "GPC505", + name: "Gravity Method Practical", + instructor: "Upendra K. Singh", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC505.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "11:00-11:50", "Remote Sensing Gravity Magnetic Lab"], + ["Monday", "10:00-10:50", "Remote Sensing Gravity Magnetic Lab"], + ], + semester: "MS", + }, + { + id: 99, + code: "GPC507", + name: "Mathematical Functional Analysis Practical", + instructor: "Arun Singh", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC507.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "12:00-12:50", "Geophysical Inversion lab"], + ["Thursday", "11:00-11:50", "Geophysical Inversion lab"], + ], + semester: "MS", + }, + { + id: 100, + code: "GPE202", + name: "Geophysical Prospecting", + instructor: "Saurabh Datta Gupta,Niptika Jana,Partha Pratim Mandal", + department: "Applied Geophysics", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G1"], + ["Tuesday", "02:00-02:50", "LC-II-G1"], + ["Wednesday", "02:00-02:50", "LC-II-G1"], + ], + semester: "MS", + }, + { + id: 101, + code: "GPE203", + name: "Geophysical Prospecting Practical", + instructor: "Partha Pratim Mandal", + department: "Applied Geophysics", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPE203.pdf", + credits: "0-0-2", + timetable: [ + ["Friday", "11:00-11:50", "Instrumentation lab"], + ["Friday", "10:00-10:50", "Instrumentation lab"], + ], + semester: "MS", + }, + { + id: 102, + code: "MCC301", + name: "Number Theory and Cryptography", + instructor: "Pramod Kumar Kewat", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC301.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G13"], + ["Wednesday", "04:00-04:50", "LC-II-G13"], + ["Friday", "03:00-03:50", "LC-II-G13"], + ], + semester: "MS", + }, + { + id: 103, + code: "MCC302", + name: "GPU Computing Practical", + instructor: "Badam Singh Kushvah", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC302.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "11:00-11:50", "CSE LAB - III"], + ["Monday", "10:00-10:50", "CSE LAB - III"], + ], + semester: "MS", + }, + { + id: 104, + code: "MCC502", + name: "Differential Equations", + instructor: "Ranjit Kumar Upadhyay", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC502.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G13"], + ["Tuesday", "12:00-12:50", "LC-II-G13"], + ], + semester: "MS", + }, + { + id: 105, + code: "MCD541", + name: "GPU Computing", + instructor: "Badam Singh Kushvah", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD541.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G13"], + ["Tuesday", "05:00-05:50", "LC-II-G13"], + ["Thursday", "03:00-03:50", "LC-II-G13"], + ], + semester: "MS", + }, + { + id: 106, + code: "MCO403", + name: "Graph Algorithms", + instructor: "Dinabandhu Pradhan", + department: "Mathematics and Computing", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCO403.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "LC-II-G13"], + ["Thursday", "02:00-02:50", "LC-II-G13"], + ["Friday", "02:00-02:50", "LC-II-G13"], + ], + semester: "MS", + }, + { + id: 107, + code: "GLC518", + name: "Principles and Applications of Geostatistics", + instructor: "Mrinal Kanti Mukherjee", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC518.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 108, + code: "GLC519", + name: "Engineering Geology", + instructor: "Rajendra Kumar Dubey", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC519.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 109, + code: "GLC520", + name: "Hydrogeology", + instructor: "Ashutosh Tripathy", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC520.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 110, + code: "GLC524", + name: "Principles and Applications of Geostatistics Practical", + instructor: "Mrinal Kanti Mukherjee", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC524.pdf", + credits: "0-0-2", + timetable: [["Wednesday", "04:00-04:50", " "]], + semester: "MS", + }, + { + id: 111, + code: "GLC525", + name: "Engineering Geology and Hydrogeology Practical", + instructor: "Ashutosh Tripathy,Rajendra Kumar Dubey", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC525.pdf", + credits: "0-0-3", + timetable: [["Tuesday", "03:00-03:50", " "]], + semester: "MS", + }, + { + id: 112, + code: "GLD521", + name: "Stratigraphy", + instructor: "R Anand", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD521.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "AGL-3"], + ["Tuesday", "12:00-12:50", "AGL-3"], + ["Wednesday", "12:00-12:50", "AGL-3"], + ], + semester: "MS", + }, + { + id: 113, + code: "GLD522", + name: "Coalbed Methane, Shale Gas and Gas Hydrate Exploration", + instructor: "Mrinal Kanti Mukherjee", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD522.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "AGL-1"], + ["Tuesday", "12:00-12:50", "AGL-1"], + ["Wednesday", "12:00-12:50", "AGL-1"], + ], + semester: "MS", + }, + { + id: 114, + code: "GLO523", + name: "Atmosphere, Ocean and Climate Dynamics", + instructor: "Anup Krishna Prasad", + department: "Applied Geology", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLO523.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "AGL-2"], + ["Thursday", "12:00-12:50", "AGL-2"], + ["Friday", "12:00-12:50", "AGL-2"], + ], + semester: "MS", + }, + { + id: 115, + code: "GPC516", + name: "Geophysical Inversion", + instructor: "Saumen Maiti", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC516.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "10:00-10:50", "AGP Annexure 1st Floor"], + ["Thursday", "09:00-09:50", "AGP Annexure 1st Floor"], + ["Friday", "09:00-09:50", "AGP Annexure 1st Floor"], + ], + semester: "MS", + }, + { + id: 116, + code: "GPC517", + name: "Seismic Data Processing and Interpretation", + instructor: "Saurabh Datta Gupta", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC517.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "AGP Annexure 1st Floor"], + ["Tuesday", "09:00-09:50", "AGP Annexure 1st Floor"], + ["Wednesday", "09:00-09:50", "AGP Annexure 1st Floor"], + ], + semester: "MS", + }, + { + id: 117, + code: "GPC518", + name: "Geophysical Inversion Practical", + instructor: "Saumen Maiti", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC518.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "05:00-05:50", "Geophysical Inversion lab"], + ["Tuesday", "04:00-04:50", "Geophysical Inversion lab"], + ], + semester: "MS", + }, + { + id: 118, + code: "GPC519", + name: "Seismic Data Processing and Interpretation Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC519.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "05:00-05:50", "Seismic data processing Lab"], + ["Wednesday", "04:00-04:50", "Seismic data processing Lab"], + ], + semester: "MS", + }, + { + id: 119, + code: "GPD501", + name: "Geothermics and Geodynamics", + instructor: "Prosanta Kumar Khan", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "AGP 516"], + ["Tuesday", "12:00-12:50", "AGP 516"], + ["Wednesday", "12:00-12:50", "AGP 516"], + ], + semester: "MS", + }, + { + id: 120, + code: "GPD502", + name: "Formation Evaluation", + instructor: "Partha Pratim Mandal", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD502.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "AGP Annexure 1st Floor"], + ["Tuesday", "11:00-11:50", "AGP Annexure 1st Floor"], + ["Wednesday", "11:00-11:50", "AGP Annexure 1st Floor"], + ], + semester: "MS", + }, + { + id: 121, + code: "GPD503", + name: "Image Processing and Geographic Information System", + instructor: "Giri Yellalacheruvu", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD503.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "AGP 516"], + ["Tuesday", "11:00-11:50", "AGP 516"], + ["Wednesday", "11:00-11:50", "AGP 516"], + ], + semester: "MS", + }, + { + id: 122, + code: "GPO501", + name: "Groundwater Geophysics", + instructor: "Upendra K. Singh", + department: "Applied Geophysics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPO501.pdf", + credits: "3-0-0", + timetable: [ + ["Thursday", "12:00-12:50", "AGP Annexure 1st Floor"], + ["Friday", "12:00-12:50", "AGP Annexure 1st Floor"], + ], + semester: "MS", + }, + { + id: 123, + code: "MCC503", + name: "Numerical Methods", + instructor: "Shishir Gupta", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC503.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 124, + code: "MCC506", + name: "Numerical Methods Practical", + instructor: "Atul Kumar Verma", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC506.pdf", + credits: "0-0-3", + timetable: [], + semester: "MS", + }, + { + id: 125, + code: "MCD531", + name: "Cryptography", + instructor: "Abhay Kumar Singh", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD531.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 126, + code: "MCD557", + name: "Finite Field Theory", + instructor: "Pramod Kumar Kewat", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD557.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-I-C16"], + ["Tuesday", "11:00-11:50", "LC-I-C16"], + ["Wednesday", "11:00-11:50", "LC-I-C16"], + ], + semester: "MS", + }, + { + id: 127, + code: "MCO401", + name: "Partial Differential Equations", + instructor: "Mritunjay Kumar Singh", + department: "Mathematics and Computing", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCO401.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-I-C16"], + ["Thursday", "12:00-12:50", "LC-I-C16"], + ["Friday", "12:00-12:50", "LC-I-C16"], + ], + semester: "MS", + }, + { + id: 128, + code: "MCO502", + name: "Optimization Techniques", + instructor: "Anurag Jayswal", + department: "Mathematics and Computing", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCO502.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-I-C16"], + ["Tuesday", "09:00-09:50", "LC-I-C16"], + ["Wednesday", "09:00-09:50", "LC-I-C16"], + ], + semester: "MS", + }, + { + id: 129, + code: "CYC514", + name: "Photochemistry & Pericyclic Reactions", + instructor: "Somnath Yadav", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC514.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-C8"], + ["Thursday", "04:00-04:50", "LC-II-C8"], + ["Friday", "02:00-02:50", "LC-II-C8"], + ], + semester: "MS", + }, + { + id: 130, + code: "CYC515", + name: "Molecular Spectroscopy", + instructor: "Soumit Chatterjee", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC515.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-C8"], + ["Wednesday", "03:00-03:50", "LC-II-C8"], + ["Friday", "03:00-03:50", "LC-II-C8"], + ], + semester: "MS", + }, + { + id: 131, + code: "CYC516", + name: "Strategies in Organic Synthesis", + instructor: "Parthasarathi Das", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC516.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C8"], + ["Wednesday", "04:00-04:50", "LC-II-C8"], + ["Thursday", "02:00-02:50", "LC-II-C8"], + ], + semester: "MS", + }, + { + id: 132, + code: "CYC517", + name: "Physical Chemistry Lab - II", + instructor: "Soumit Chatterjee,Sumanta Kumar Sahu", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC517.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", "PG Lab"], + ["Monday", "10:00-10:50", "PG Lab"], + ], + semester: "MS", + }, + { + id: 133, + code: "CYC518", + name: "Analytical Chemistry Lab", + instructor: "Sumanta Kumar Padhi,Rohith P John", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC518.pdf", + credits: "0-0-3", + timetable: [ + ["Wednesday", "11:00-11:50", "PG Lab"], + ["Wednesday", "10:00-10:50", "PG Lab"], + ], + semester: "MS", + }, + { + id: 134, + code: "CYD512", + name: "Modern Aspects of Catalysis and Surface Science", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD512.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "CECR2"], + ["Thursday", "03:00-03:50", "CECR2"], + ["Friday", "04:00-04:50", "CECR2"], + ], + semester: "MS", + }, + { + id: 135, + code: "CYD515", + name: "Advances in Nonconventional Energy Systems", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD515.pdf", + credits: "3-0-0", + timetable: [["Thursday", "03:00-03:50", " "]], + semester: "MS", + }, + { + id: 136, + code: "CYD522", + name: "Advanced Biocatalysis", + instructor: "Chanchal Haldar", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD522.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C3"], + ["Tuesday", "02:00-02:50", "LC-II-C3"], + ["Wednesday", "02:00-02:50", "LC-II-C3"], + ], + semester: "MS", + }, + { + id: 137, + code: "CYD532", + name: "Solid State Materials: Chemistry & Engineering", + instructor: "Sumanta Kumar Sahu", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD532.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C4"], + ["Tuesday", "02:00-02:50", "LC-II-C4"], + ["Wednesday", "02:00-02:50", "LC-II-C4"], + ], + semester: "MS", + }, + { + id: 138, + code: "CYD534", + name: "Heterocyclic Chemistry", + instructor: "Swapan Dey", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD534.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C8"], + ["Tuesday", "02:00-02:50", "LC-II-C8"], + ["Wednesday", "02:00-02:50", "LC-II-C8"], + ], + semester: "MS", + }, + { + id: 139, + code: "CYD536", + name: "Science of Corrosion & Corrosion Control", + instructor: "Udayabhanu G", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD536.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G10"], + ["Thursday", "03:00-03:50", "LC-II-G10"], + ["Friday", "04:00-04:50", "LC-II-G10"], + ], + semester: "MS", + }, + { + id: 140, + code: "MCC514", + name: "Functional Analysis", + instructor: "Akhilesh Prasad", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC514.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-I-C15"], + ["Thursday", "04:00-04:50", "LC-I-C15"], + ["Friday", "02:00-02:50", "LC-I-C15"], + ], + semester: "MS", + }, + { + id: 141, + code: "MCC515", + name: "Topology", + instructor: "Seetala Prasad Tiwari", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC515.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-I-C15"], + ["Wednesday", "03:00-03:50", "LC-I-C15"], + ["Friday", "03:00-03:50", "LC-I-C15"], + ], + semester: "MS", + }, + { + id: 142, + code: "MCC516", + name: "Computational Fluid Dynamics", + instructor: "Ramanababu Kaligatla", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC516.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-I-C15"], + ["Thursday", "03:00-03:50", "LC-I-C15"], + ["Friday", "04:00-04:50", "LC-I-C15"], + ], + semester: "MS", + }, + { + id: 143, + code: "MCC517", + name: "Design and Analysis of Algorithms", + instructor: "Ranjit Kumar Upadhyay", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC517.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-I-C15"], + ["Wednesday", "04:00-04:50", "LC-I-C15"], + ["Thursday", "02:00-02:50", "LC-I-C15"], + ], + semester: "MS", + }, + { + id: 144, + code: "MCC518", + name: "Computational Fluid Dynamics Practical", + instructor: "Neeru Bala", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC518.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", "UG Lab-1"], + ["Monday", "10:00-10:50", "UG Lab-1"], + ], + semester: "MS", + }, + { + id: 145, + code: "MCC519", + name: "Design and Analysis of Algorithms Practical", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC519.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "UG Lab-1"], + ["Wednesday", "10:00-10:50", "UG Lab-1"], + ], + semester: "MS", + }, + { + id: 146, + code: "MCD533", + name: "Numerical Optimization", + instructor: "Anurag Jayswal", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD533.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-I-C18"], + ["Tuesday", "02:00-02:50", "LC-I-C18"], + ["Wednesday", "02:00-02:50", "LC-I-C18"], + ], + semester: "MS", + }, + { + id: 147, + code: "PHC514", + name: "Statistical Mechanics", + instructor: "Pankaj Mishra", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC514.pdf", + credits: "3-1-0", + timetable: [ + ["Monday", "03:00-03:50", " "], + ["Thursday", "05:00-05:50", " "], + ], + semester: "MS", + }, + { + id: 148, + code: "PHC515", + name: "Laser Physics and Technology", + instructor: "Vineet Kumar Rai", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC515.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", " "], + ["Thursday", "04:00-04:50", " "], + ["Friday", "05:00-05:50", " "], + ], + semester: "MS", + }, + { + id: 149, + code: "PHC516", + name: "Nuclear and Particle Physics", + instructor: "Shailendra Kumar Sharma", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC516.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "NAC Hall"], + ["Wednesday", "03:00-03:50", "NAC Hall"], + ["Friday", "03:00-03:50", "NAC Hall"], + ], + semester: "MS", + }, + { + id: 150, + code: "PHC517", + name: "Computation and Simulation", + instructor: "Sudeshna Sen", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC517.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "11:00-11:50", "NLHC Computer Lab - II"], + ["Monday", "10:00-10:50", "NLHC Computer Lab - II"], + ], + semester: "MS", + }, + { + id: 151, + code: "PHC518", + name: "Experimental Physics - V", + instructor: "Ritwik Mondal,Tusharkanti Dey", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC518.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "PHPG LAB"], + ["Wednesday", "10:00-10:50", "PHPG LAB"], + ], + semester: "MS", + }, + { + id: 152, + code: "PHD509", + name: "Advanced Condensed Matter Physics", + instructor: "Ritwik Mondal", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD509.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-I-C9"], + ["Thursday", "03:00-03:50", "LC-I-C9"], + ["Friday", "04:00-04:50", "LC-I-C9"], + ], + semester: "MS", + }, + { + id: 153, + code: "PHD510", + name: "Quantum Computation and Information", + instructor: "Sudipto Singha Roy", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD510.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "NAC Hall"], + ["Thursday", "03:00-03:50", "NAC Hall"], + ["Friday", "04:00-04:50", "NAC Hall"], + ], + semester: "MS", + }, + { + id: 154, + code: "PHD575", + name: "Theoretical Physics", + instructor: "Rajendra Prasad Giri", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD575.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", " "], + ["Tuesday", "02:00-02:50", " "], + ["Wednesday", "02:00-02:50", " "], + ], + semester: "MS", + }, + { + id: 155, + code: "PHD576", + name: "Experimental Physics", + instructor: "Ram Bilash Choudhary", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD576.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 156, + code: "GLC518", + name: "Principles and Applications of Geostatistics", + instructor: "Mrinal Kanti Mukherjee", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC518.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 157, + code: "GLC519", + name: "Engineering Geology", + instructor: "Rajendra Kumar Dubey", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC519.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 158, + code: "GLC520", + name: "Hydrogeology", + instructor: "Ashutosh Tripathy", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC520.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 159, + code: "GLC524", + name: "Principles and Applications of Geostatistics Practical", + instructor: "Mrinal Kanti Mukherjee", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC524.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 160, + code: "GLC525", + name: "Engineering Geology and Hydrogeology Practical", + instructor: "Ashutosh Tripathy,Rajendra Kumar Dubey", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC525.pdf", + credits: "0-0-3", + timetable: [], + semester: "MS", + }, + { + id: 161, + code: "GLD576", + name: "Nanotechnology in Mineral and Hydrocarbon Exploration", + instructor: "Sahendra Singh", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD576.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "AGL Library"], + ["Tuesday", "12:00-12:50", "AGL Library"], + ["Wednesday", "12:00-12:50", "AGL Library"], + ], + semester: "MS", + }, + { + id: 162, + code: "GLD591", + name: "Rock Slope Engineering", + instructor: "Kripamoy Sarkar", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD591.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "AGL-2"], + ["Tuesday", "12:00-12:50", "AGL-2"], + ["Wednesday", "12:00-12:50", "AGL-2"], + ], + semester: "MS", + }, + { + id: 163, + code: "GPC516", + name: "Geophysical Inversion", + instructor: "Saumen Maiti", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC516.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 164, + code: "GPC517", + name: "Seismic Data Processing and Interpretation", + instructor: "Saurabh Datta Gupta", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC517.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 165, + code: "GPC518", + name: "Geophysical Inversion Practical", + instructor: "Saumen Maiti", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC518.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 166, + code: "GPC519", + name: "Seismic Data Processing and Interpretation Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC519.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 167, + code: "GLC591", + name: "Research Methodology", + instructor: "Ashutosh Tripathy", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC591.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 168, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Applied Geology", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 169, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Applied Geology", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/HSI500.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G8"], + ["Tuesday", "09:00-09:50", "LC-II-G8"], + ["Wednesday", "09:00-09:50", "LC-II-G8"], + ], + semester: "MS", + }, + { + id: 170, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Applied Geophysics", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 171, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Applied Geophysics", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 172, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Chemistry and Chemical Biology", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 173, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Chemistry and Chemical Biology", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 174, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Chemical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 175, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Chemical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 176, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Computer Science and Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 177, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Computer Science and Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 178, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Civil Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 179, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Civil Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 180, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Electronics Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 181, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Electronics Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 182, + code: "EEC550", + name: "Research Methodology and Statistics for Electrical Engineering", + instructor: "Vivekananda Mukherjee", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC550.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "Conference Room"], + ["Tuesday", "12:00-12:50", "Conference Room"], + ["Wednesday", "12:00-12:50", "Conference Room"], + ], + semester: "MS", + }, + { + id: 183, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Electrical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 184, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Electrical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 185, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Environmental Science & Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 186, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Environmental Science & Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 187, + code: "FMC511", + name: "Research Methodology", + instructor: "Kesavan Ravi,Mantripragada Vishnu Teja", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC511.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "FME-2"], + ["Tuesday", "12:00-12:50", "FME-2"], + ["Wednesday", "12:00-12:50", "FME-2"], + ], + semester: "MS", + }, + { + id: 188, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 189, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 190, + code: "HSC501", + name: "Research Methodology", + instructor: "Sangay Tamang", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC501.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "HSS class room -1"], + ["Wednesday", "11:00-11:50", "HSS class room -1"], + ["Friday", "10:00-10:50", "HSS class room -1"], + ], + semester: "MS", + }, + { + id: 191, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Humanities and Social Sciences", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 192, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Humanities and Social Sciences", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 193, + code: "HSC501", + name: "Research Methodology", + instructor: "Sangay Tamang", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC501.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 194, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Humanities and Social Sciences", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 195, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Humanities and Social Sciences", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 196, + code: "HSC501", + name: "Research Methodology", + instructor: "Sangay Tamang", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC501.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 197, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Humanities and Social Sciences", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 198, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Humanities and Social Sciences", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 199, + code: "HSC501", + name: "Research Methodology", + instructor: "Sangay Tamang", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC501.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 200, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Humanities and Social Sciences", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 201, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Humanities and Social Sciences", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 202, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Mathematics and Computing", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 203, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Mathematics and Computing", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 204, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Mathematics and Computing", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 205, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Mathematics and Computing", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 206, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Mining Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 207, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Mining Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 208, + code: "MNC700", + name: "Research Methodology", + instructor: "Bhaskara Behera", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC700.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "MIN- Seminar Hall"], + ["Tuesday", "12:00-12:50", "MIN- Seminar Hall"], + ["Wednesday", "12:00-12:50", "MIN- Seminar Hall"], + ], + semester: "MS", + }, + { + id: 209, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Mechanical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 210, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Mechanical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 211, + code: "MEC591", + name: "Research Methodology and Statistics", + instructor: "Kabilan B", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC591.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "MME-C2"], + ["Tuesday", "12:00-12:50", "MME-C2"], + ["Wednesday", "12:00-12:50", "MME-C2"], + ], + semester: "MS", + }, + { + id: 212, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Mechanical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 213, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Mechanical Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 214, + code: "MEC591", + name: "Research Methodology and Statistics", + instructor: "Kabilan B", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC591.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 215, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Management Studies and Industrial Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 216, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Management Studies and Industrial Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 217, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Management Studies and Industrial Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 218, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Management Studies and Industrial Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 219, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Petroleum Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 220, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Petroleum Engineering", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 221, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R,Abhisek Ghosal", + department: "Physics", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 222, + code: "HSI500", + name: "Research and Technical Communication", + instructor: "Rahul D R", + department: "Physics", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/HSI500.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 223, + code: "MSD501", + name: "Entrepreneurship and New Ventures", + instructor: "Mohd. Irfan", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD501.pdf", + credits: "3-0-0", + timetable: [["Wednesday", "03:00-03:50", " "]], + semester: "MS", + }, + { + id: 224, + code: "MSD502", + name: "Financial Analytics", + instructor: "Preeti Roy", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD502.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 225, + code: "MSD503", + name: "Sales and Distribution Management", + instructor: "Saumya Singh", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD503.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "MS 209"], + ["Wednesday", "03:00-03:50", "MS 209"], + ["Thursday", "03:00-03:50", "MS 209"], + ], + semester: "MS", + }, + { + id: 226, + code: "MSD505", + name: "Materials Management", + instructor: "Kuthambalayan Sridhar Thyagaraj", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD505.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "MS 011"], + ["Tuesday", "02:00-02:50", "MS 011"], + ["Wednesday", "02:00-02:50", "MS 011"], + ], + semester: "MS", + }, + { + id: 227, + code: "MSD506", + name: "Investment Analysis and Portfolio Management", + instructor: "Niladri Das", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD506.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "MS 210"], + ["Thursday", "02:00-02:50", "MS 210"], + ["Friday", "02:00-02:50", "MS 210"], + ], + semester: "MS", + }, + { + id: 228, + code: "MSD507", + name: "Management of Banks and Financial Institutions", + instructor: "Shashank Bansal", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD507.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-I-C12"], + ["Tuesday", "04:00-04:50", "LC-I-C12"], + ["Friday", "03:00-03:50", "LC-I-C12"], + ], + semester: "MS", + }, + { + id: 229, + code: "MSD508", + name: "Advertising and Promotion Management", + instructor: "Mrinalini Pandey", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD508.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 230, + code: "MSD510", + name: "Personnel Management and Industrial Relations", + instructor: "Diti Goswami", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "MS 209"], + ["Thursday", "02:00-02:50", "MS 209"], + ["Friday", "02:00-02:50", "MS 209"], + ], + semester: "MS", + }, + { + id: 231, + code: "MSD511", + name: "Human Resources Development", + instructor: "Govind Swaroop Pathak", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD511.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-I-C12"], + ["Wednesday", "03:00-03:50", "LC-I-C12"], + ["Thursday", "03:00-03:50", "LC-I-C12"], + ], + semester: "MS", + }, + { + id: 232, + code: "MSD512", + name: "Service Operations Management", + instructor: "Krishnendu Shaw", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD512.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G2"], + ["Wednesday", "03:00-03:50", "LC-II-G2"], + ["Thursday", "03:00-03:50", "LC-II-G2"], + ], + semester: "MS", + }, + { + id: 233, + code: "MSD513", + name: "Managerial Psychology", + instructor: "Sabnam Basu", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD513.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "MS 210"], + ["Tuesday", "04:00-04:50", "MS 210"], + ["Friday", "03:00-03:50", "MS 210"], + ], + semester: "MS", + }, + { + id: 234, + code: "MSD516", + name: "Organisational Development and Change", + instructor: "Sabnam Basu", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD516.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 235, + code: "MSD517", + name: "Strategic Management", + instructor: "Mrinalini Pandey", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD517.pdf", + credits: "3-0-0", + timetable: [["Friday", "03:00-03:50", " "]], + semester: "MS", + }, + { + id: 236, + code: "MSD530", + name: "Supply Chain Management and Logistics", + instructor: "Krishnendu Shaw", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD530.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-I-C16"], + ["Thursday", "02:00-02:50", "LC-I-C16"], + ["Friday", "02:00-02:50", "LC-I-C16"], + ], + semester: "MS", + }, + { + id: 237, + code: "MSD532", + name: "Computational Finance", + instructor: "Shashank Bansal", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD532.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "MS 210"], + ["Tuesday", "02:00-02:50", "MS 210"], + ["Wednesday", "02:00-02:50", "MS 210"], + ], + semester: "MS", + }, + { + id: 238, + code: "MSD533", + name: "Marketing Research", + instructor: "Bibhas Chandra", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD533.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "MS 209"], + ["Tuesday", "02:00-02:50", "MS 209"], + ["Wednesday", "02:00-02:50", "MS 209"], + ], + semester: "MS", + }, + { + id: 239, + code: "MSD535", + name: "Internet of Things and Blockchain for Business", + instructor: "Esha Saha", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD535.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 240, + code: "HSC519", + name: "Privacy, Morality & Law", + instructor: "Gyan Prakash", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC519.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 241, + code: "HSC526", + name: "The Psychology of the Internet", + instructor: "Sucharita Maji", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC526.pdf", + credits: "3-0-0", + timetable: [["Friday", "02:00-02:50", " "]], + semester: "MS", + }, + { + id: 242, + code: "HSC528", + name: "Theorizing Digital Transformation", + instructor: "Sruti Kanungo", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC528.pdf", + credits: "3-0-0", + timetable: [["Thursday", "02:00-02:50", " "]], + semester: "MS", + }, + { + id: 243, + code: "HSC529", + name: "Natural Language Processing Lab", + instructor: "Shanmugapriya T", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC529.pdf", + credits: "0-0-3", + timetable: [], + semester: "MS", + }, + { + id: 244, + code: "HSD507", + name: "Introduction to Drama, Theatre and Performance Studies", + instructor: "Nirban Manna", + department: "Humanities and Social Sciences", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSD507.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G16"], + ["Tuesday", "02:00-02:50", "LC-II-G16"], + ["Wednesday", "02:00-02:50", "LC-II-G16"], + ], + semester: "MS", + }, + { + id: 245, + code: "HSD559", + name: "Analytical Philosophy", + instructor: "Ajit Kumar Behura", + department: "Humanities and Social Sciences", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSD559.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 246, + code: "CHC201", + name: "Chemical Process Calculations", + instructor: "A Samanta", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G12"], + ["Tuesday", "11:00-11:50", "LC-II-G12"], + ["Wednesday", "11:00-11:50", "LC-II-G12"], + ], + semester: "MS", + }, + { + id: 247, + code: "CHC202", + name: "Fluid and Particle Mechanics", + instructor: "Sandip Mandal", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC202.pdf", + credits: "3-1-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G12"], + ["Thursday", "10:00-10:50", "LC-II-G12"], + ["Friday", "11:00-11:50", "LC-II-G12"], + ], + semester: "MS", + }, + { + id: 248, + code: "CHC203", + name: "Heat Transfer", + instructor: "Bidhan Chandra", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC203.pdf", + credits: "3-1-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G12"], + ["Thursday", "11:00-11:50", "LC-II-G12"], + ["Friday", "10:00-10:50", "LC-II-G12"], + ], + semester: "MS", + }, + { + id: 249, + code: "CHC204", + name: "Computational Tools for Chemical Engineers Lab", + instructor: "Bidhan Chandra,Pantula Devi Priyanka", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC204.pdf", + credits: "0-0-2", + timetable: [["Monday", "05:00-05:50", " "]], + semester: "MS", + }, + { + id: 250, + code: "CHC205", + name: "Fluid and Particle Mechanics Lab", + instructor: "Sandip Mandal,Suresh Kumar Yatirajula", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC205.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 251, + code: "CHE201", + name: "Engineering Thermodynamics", + instructor: "Suresh Kumar Yatirajula", + department: "Chemical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHE201.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "10:00-10:50", "LC-II-G5"], + ["Thursday", "09:00-09:50", "LC-II-G5"], + ["Friday", "09:00-09:50", "LC-II-G5"], + ], + semester: "MS", + }, + { + id: 252, + code: "CSC201", + name: "Data Structures", + instructor: "Subhrangsu Mandal", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G9"], + ["Tuesday", "11:00-11:50", "LC-II-G9"], + ["Wednesday", "11:00-11:50", "LC-II-G9"], + ], + semester: "MS", + }, + { + id: 253, + code: "CSC202", + name: "Discrete Mathematics", + instructor: "Soumen Bag", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G9"], + ["Thursday", "10:00-10:50", "LC-II-G9"], + ["Friday", "11:00-11:50", "LC-II-G9"], + ], + semester: "MS", + }, + { + id: 254, + code: "CSC203", + name: "Computer Organization", + instructor: "Sachin Tripathi", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC203.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G9"], + ["Thursday", "11:00-11:50", "LC-II-G9"], + ["Friday", "10:00-10:50", "LC-II-G9"], + ], + semester: "MS", + }, + { + id: 255, + code: "CSC204", + name: "Data Structures Lab", + instructor: "Subhrangsu Mandal", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC204.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 256, + code: "CSC205", + name: "Computer Organization Lab", + instructor: "Sachin Tripathi,Tanusree Kaibartta,Ayan Das", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC205.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 257, + code: "CSE201", + name: "Data Structures and Algorithms", + instructor: "Tanusree Kaibartta,Ayan Das", + department: "Computer Science and Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSE201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G5"], + ["Tuesday", "09:00-09:50", "LC-II-G5"], + ["Wednesday", "09:00-09:50", "LC-II-G5"], + ], + semester: "MS", + }, + { + id: 258, + code: "CEC201", + name: "Surveying", + instructor: "Avinash Kumar Singh", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC201.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 259, + code: "CEC202", + name: "Environmental Engineering", + instructor: "Kironmala Chanda", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C11"], + ["Thursday", "10:00-10:50", "LC-II-C11"], + ["Friday", "11:00-11:50", "LC-II-C11"], + ], + semester: "MS", + }, + { + id: 260, + code: "CEC203", + name: "Building Materials, Construction and Management", + instructor: "Rajib Sarkar", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC203.pdf", + credits: "3-1-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C11"], + ["Thursday", "11:00-11:50", "LC-II-C11"], + ], + semester: "MS", + }, + { + id: 261, + code: "CEC204", + name: "Material Testing Laboratory", + instructor: "Vishwas Nandkishor Khatri,Tanish Dey", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC204.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "CEUG1"], + ["Monday", "04:00-04:50", "CEUG1"], + ], + semester: "MS", + }, + { + id: 262, + code: "CEC205", + name: "Environmental Engineering Laboratory", + instructor: "Kironmala Chanda", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC205.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "CEUG2"], + ["Thursday", "04:00-04:50", "CEUG2"], + ], + semester: "MS", + }, + { + id: 263, + code: "CEE201", + name: "Mechanics of Solid", + instructor: "Pranesh Roy", + department: "Civil Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEE201.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "10:00-10:50", "NAC Hall"], + ["Thursday", "09:00-09:50", "NAC Hall"], + ["Friday", "09:00-09:50", "NAC Hall"], + ], + semester: "MS", + }, + { + id: 264, + code: "ECC201", + name: "Electronic Devices", + instructor: "Nirupama Mandal", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G5"], + ["Tuesday", "11:00-11:50", "LC-II-G5"], + ["Wednesday", "11:00-11:50", "LC-II-G5"], + ], + semester: "MS", + }, + { + id: 265, + code: "ECC202", + name: "Signals & Networks", + instructor: "Prashant Kumar Varshney", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC202.pdf", + credits: "3-1-0", + timetable: [], + semester: "MS", + }, + { + id: 266, + code: "ECC203", + name: "Digital Circuits and System Design", + instructor: "Jaisingh Thangaraj", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC203.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G5"], + ["Thursday", "11:00-11:50", "LC-II-G5"], + ["Friday", "10:00-10:50", "LC-II-G5"], + ], + semester: "MS", + }, + { + id: 267, + code: "ECC204", + name: "Digital System Design Lab", + instructor: "Jeevesh Kumar,Sanjeev Kumar Raghuwanshi,Mukul Kumar Das", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC204.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 268, + code: "ECC205", + name: "Signals & Networks Lab", + instructor: "Nirupama Mandal,Shalu Rani,Prashant Kumar Varshney", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC205.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 269, + code: "ECE301", + name: "Analog Interface Electronics", + instructor: "Jitendra Kumar", + department: "Electronics Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECE301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C1"], + ["Tuesday", "09:00-09:50", "LC-II-C1"], + ["Wednesday", "09:00-09:50", "LC-II-C1"], + ], + semester: "MS", + }, + { + id: 270, + code: "EEC201", + name: "Signals, Systems and Networks", + instructor: "Haswanth Vundavilli", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC201.pdf", + credits: "3-1-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G3"], + ["Tuesday", "11:00-11:50", "LC-II-G3"], + ["Wednesday", "11:00-11:50", "LC-II-G3"], + ], + semester: "MS", + }, + { + id: 271, + code: "EEC202", + name: "Analog and Digital Electronics", + instructor: "Arijit Baral", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G3"], + ["Thursday", "10:00-10:50", "LC-II-G3"], + ["Friday", "11:00-11:50", "LC-II-G3"], + ], + semester: "MS", + }, + { + id: 272, + code: "EEC203", + name: "Electromagnetic Theory and Applications", + instructor: "Bhukya Krishna Naick", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC203.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G3"], + ["Thursday", "11:00-11:50", "LC-II-G3"], + ["Friday", "10:00-10:50", "LC-II-G3"], + ], + semester: "MS", + }, + { + id: 273, + code: "EEC271", + name: "Networks Lab", + instructor: "Haswanth Vundavilli,Dushyant Sharma", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC271.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "Elect. Tech. Lab"], + ["Monday", "04:00-04:50", "Elect. Tech. Lab"], + ], + semester: "MS", + }, + { + id: 274, + code: "EEC272", + name: "Analog and Digital Electronics Lab", + instructor: "Vedantham Lakshmi Srinivas,Kishor Bhaskarrao Nandapurkar", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC272.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "DE Lab"], + ["Thursday", "04:00-04:50", "DE Lab"], + ], + semester: "MS", + }, + { + id: 275, + code: "EEE202", + name: "Utilization of Electrical Energy", + instructor: "Dushyant Sharma", + department: "Electrical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G15"], + ["Tuesday", "09:00-09:50", "LC-II-G15"], + ["Wednesday", "09:00-09:50", "LC-II-G15"], + ], + semester: "MS", + }, + { + id: 276, + code: "ESC201", + name: "Drinking Water Supply and Treatment", + instructor: "Sukha Ranjan Samadder", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC201.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 277, + code: "ESC202", + name: "Air Pollution", + instructor: "Suresh Pandian E", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C5"], + ["Thursday", "10:00-10:50", "LC-II-C5"], + ["Friday", "11:00-11:50", "LC-II-C5"], + ], + semester: "MS", + }, + { + id: 278, + code: "ESC203", + name: "Noise Pollution and Control", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC203.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C5"], + ["Thursday", "11:00-11:50", "LC-II-C5"], + ], + semester: "MS", + }, + { + id: 279, + code: "ESC251", + name: "Water Pollution Practical", + instructor: "Sukha Ranjan Samadder", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC251.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "Water Chemistry Lab"], + ["Monday", "04:00-04:50", "Water Chemistry Lab"], + ], + semester: "MS", + }, + { + id: 280, + code: "ESC252", + name: "Air and Noise Pollution Practical", + instructor: "Suresh Pandian E", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC252.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "Air Lab"], + ["Thursday", "04:00-04:50", "Air Lab"], + ], + semester: "MS", + }, + { + id: 281, + code: "ESE201", + name: "Pollution Control and Management", + instructor: "Madhumita Patel", + department: "Environmental Science & Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESE201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G7"], + ["Tuesday", "09:00-09:50", "LC-II-G7"], + ["Wednesday", "09:00-09:50", "LC-II-G7"], + ], + semester: "MS", + }, + { + id: 282, + code: "FMC201", + name: "Colloids and Interfacial Phenomena", + instructor: "Anand Anupam", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "FME-2"], + ["Tuesday", "11:00-11:50", "FME-2"], + ["Wednesday", "11:00-11:50", "FME-2"], + ], + semester: "MS", + }, + { + id: 283, + code: "FMC202", + name: "Heat and Mass Transfer", + instructor: "Kesavan Ravi", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "FME-2"], + ["Thursday", "10:00-10:50", "FME-2"], + ["Friday", "11:00-11:50", "FME-2"], + ], + semester: "MS", + }, + { + id: 284, + code: "FMC203", + name: "Physical Separation Processes for Coal and Minerals", + instructor: "Nikkam Suresh", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC203.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "FME-2"], + ["Thursday", "11:00-11:50", "FME-2"], + ["Friday", "10:00-10:50", "FME-2"], + ], + semester: "MS", + }, + { + id: 285, + code: "FMC251", + name: "Particle Technology Laboratory", + instructor: "Shubhi Gupta", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC251.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 286, + code: "FMC252", + name: "Physical Separation Processes Laboratory", + instructor: "Subhendu Mishra", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC252.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 287, + code: "FME221", + name: "Particle Technology", + instructor: "Shubhi Gupta", + department: "Fuel Mineral & Metallurgical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FME221.pdf", + credits: "3-0-0", + timetable: [ + ["Thursday", "09:00-09:50", "LC-II-G7"], + ["Friday", "09:00-09:50", "LC-II-G7"], + ], + semester: "MS", + }, + { + id: 288, + code: "GLE203", + name: "Geology for Engineering and Sciences Practical", + instructor: "Mrinal Kanti Mukherjee", + department: "Mining Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/GLE203.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 289, + code: "MNC200", + name: "Elements of Mining", + instructor: "Subhas Chandra Bhowmik", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC200.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G2"], + ["Tuesday", "11:00-11:50", "LC-II-G2"], + ], + semester: "MS", + }, + { + id: 290, + code: "MNC201", + name: "Rock Breakage", + instructor: "Bhanwar Singh Choudhary", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G2"], + ["Thursday", "10:00-10:50", "LC-II-G2"], + ["Friday", "11:00-11:50", "LC-II-G2"], + ], + semester: "MS", + }, + { + id: 291, + code: "MNC202", + name: "Mine Surveying", + instructor: "Dheeraj Kumar", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC202.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G2"], + ["Thursday", "11:00-11:50", "LC-II-G2"], + ["Friday", "10:00-10:50", "LC-II-G2"], + ], + semester: "MS", + }, + { + id: 292, + code: "MNC203", + name: "Mine Surveying Practical", + instructor: "Subhas Chandra Bhowmik,Bhaskara Behera,Ajeet Yadav", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC203.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 293, + code: "MNC204", + name: "Rock Breakage Practical", + instructor: "Gnananandh Budi,V M S R Murthy,Bhaskara Behera", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC204.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 294, + code: "MNE201", + name: "Introduction to Mining", + instructor: "Ajeet Yadav", + department: "Mining Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNE201.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "10:00-10:50", "LC-II-G11"], + ["Thursday", "09:00-09:50", "LC-II-G11"], + ["Friday", "09:00-09:50", "LC-II-G11"], + ], + semester: "MS", + }, + { + id: 295, + code: "MEC201", + name: "Kinematics of Machines", + instructor: "Shibayan Sarkar", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "NLHC-G1"], + ["Tuesday", "11:00-11:50", "NLHC-G1"], + ["Wednesday", "11:00-11:50", "NLHC-G1"], + ], + semester: "MS", + }, + { + id: 296, + code: "MEC202", + name: "Fluid Mechanics", + instructor: "Ajay Bhandari", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "NLHC-G1"], + ["Thursday", "10:00-10:50", "NLHC-G1"], + ["Friday", "11:00-11:50", "NLHC-G1"], + ], + semester: "MS", + }, + { + id: 297, + code: "MEC203", + name: "Applied Thermodynamics", + instructor: "Rakesh Kumar", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC203.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "NLHC-G1"], + ["Thursday", "11:00-11:50", "NLHC-G1"], + ["Friday", "10:00-10:50", "NLHC-G1"], + ], + semester: "MS", + }, + { + id: 298, + code: "MEC204", + name: "Applied Mechanics Lab", + instructor: + "Sarthak Sambit Singh,Sachin Kumar Singh,Aman Kumar,Shibayan Sarkar,Ashis Mallick,Sanjoy K Ghoshal", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC204.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 299, + code: "MEC205", + name: "Thermodynamics and Fluid Mechanics Lab", + instructor: + "Ajay Bhandari,Sandipan Kumar Das,Randip Kumar Das,Rakesh Kumar,Subhankar Sen,Satyabrata Sahoo,Subramanian Narayan", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC205.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 300, + code: "MEE201", + name: "Engineering Materials", + instructor: "Madan Lal Chandravanshi", + department: "Mechanical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEE201.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 301, + code: "MMC201", + name: "Manufacturing Technology", + instructor: "Somnath Chattopadhyaya", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C1"], + ["Tuesday", "11:00-11:50", "LC-II-C1"], + ["Wednesday", "11:00-11:50", "LC-II-C1"], + ], + semester: "MS", + }, + { + id: 302, + code: "MMC202", + name: "Theory of Machines", + instructor: "Ajit Kumar", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC202.pdf", + credits: "3-1-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C1"], + ["Thursday", "10:00-10:50", "LC-II-C1"], + ["Friday", "11:00-11:50", "LC-II-C1"], + ], + semester: "MS", + }, + { + id: 303, + code: "MMC203", + name: "Design of Machine Elements", + instructor: "K Priya Ajit", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC203.pdf", + credits: "3-1-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C1"], + ["Thursday", "11:00-11:50", "LC-II-C1"], + ["Friday", "10:00-10:50", "LC-II-C1"], + ], + semester: "MS", + }, + { + id: 304, + code: "MMC204", + name: "Thermodynamics and Fluid Mechanics Lab", + instructor: "Tanweer Alam,Tanmay Dutta", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC204.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "ThE lab"], + ["Monday", "04:00-04:50", "ThE lab"], + ], + semester: "MS", + }, + { + id: 305, + code: "MMC205", + name: "Solid Mechanics and Theory of Machines Lab", + instructor: "Ajit Kumar,K Priya Ajit", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC205.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "SOM lab"], + ["Thursday", "04:00-04:50", "SOM lab"], + ], + semester: "MS", + }, + { + id: 306, + code: "MME202", + name: "Mining Machinery", + instructor: "Jayanta Das", + department: "Mechanical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MME202.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 307, + code: "GLE203", + name: "Geology for Engineering and Sciences Practical", + instructor: "Mrinal Kanti Mukherjee", + department: "Petroleum Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/GLE203.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 308, + code: "PEC201", + name: "Drilling Technology", + instructor: "A K Pathak", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "PET 2"], + ["Tuesday", "11:00-11:50", "PET 2"], + ["Wednesday", "11:00-11:50", "PET 2"], + ], + semester: "MS", + }, + { + id: 309, + code: "PEC202", + name: "Elements of Reservoir Engineering", + instructor: "Tarkeshwar Kumar", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "PET 2"], + ["Thursday", "10:00-10:50", "PET 2"], + ["Friday", "11:00-11:50", "PET 2"], + ], + semester: "MS", + }, + { + id: 310, + code: "PEC203", + name: "Drilling Fluids and Cements", + instructor: "Mohammed Hamid Siddique", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC203.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "PET 2"], + ["Thursday", "11:00-11:50", "PET 2"], + ["Friday", "10:00-10:50", "PET 2"], + ], + semester: "MS", + }, + { + id: 311, + code: "PEC204", + name: "Reservoir Engineering Practical", + instructor: "Archana ,Chandan Guria", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC204.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 312, + code: "PEC205", + name: "Drilling Fluids and Cementing Practical", + instructor: "Mohammed Hamid Siddique,Vikas Mahto", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC205.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 313, + code: "PEE201", + name: "Introduction to Petroleum Engineering", + instructor: "Chandan Sahu", + department: "Petroleum Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEE201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G11"], + ["Tuesday", "09:00-09:50", "LC-II-G11"], + ["Wednesday", "09:00-09:50", "LC-II-G11"], + ], + semester: "MS", + }, + { + id: 314, + code: "PHC200", + name: "Waves and Acoustics", + instructor: "Jairam Manam", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC200.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C3"], + ["Tuesday", "11:00-11:50", "LC-II-C3"], + ], + semester: "MS", + }, + { + id: 315, + code: "PHC201", + name: "Classical Mechanics", + instructor: "Anil Kumar Nirala", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C3"], + ["Thursday", "10:00-10:50", "LC-II-C3"], + ["Friday", "11:00-11:50", "LC-II-C3"], + ], + semester: "MS", + }, + { + id: 316, + code: "PHC202", + name: "Mathematical Physics", + instructor: "Soumya Bagchi", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC202.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C3"], + ["Thursday", "11:00-11:50", "LC-II-C3"], + ["Friday", "10:00-10:50", "LC-II-C3"], + ], + semester: "MS", + }, + { + id: 317, + code: "PHC203", + name: "Mechanics Lab", + instructor: "R Thangavel", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC203.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "PHUG LAB 1 "], + ["Monday", "04:00-04:50", "PHUG LAB 1 "], + ], + semester: "MS", + }, + { + id: 318, + code: "PHC204", + name: "Waves and Acoustics Lab", + instructor: "Umakanta Tripathy", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC204.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "PHUG LAB 1 "], + ["Thursday", "04:00-04:50", "PHUG LAB 1 "], + ], + semester: "MS", + }, + { + id: 319, + code: "PHE200", + name: "Biomedical Engineering", + instructor: "Umakanta Tripathy", + department: "Physics", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHE200.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "10:00-10:50", "LC-II-G12"], + ["Thursday", "09:00-09:50", "LC-II-G12"], + ["Friday", "09:00-09:50", "LC-II-G12"], + ], + semester: "MS", + }, + { + id: 320, + code: "CHC301", + name: "Separation Processes", + instructor: "Lutukurthi D N V V Konda", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G12"], + ["Tuesday", "05:00-05:50", "LC-II-G12"], + ["Thursday", "03:00-03:50", "LC-II-G12"], + ], + semester: "MS", + }, + { + id: 321, + code: "CHC302", + name: "Chemical Kinetics and Reaction Engineering", + instructor: "Aritra Santra", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC302.pdf", + credits: "3-1-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G12"], + ["Wednesday", "04:00-04:50", "LC-II-G12"], + ["Friday", "03:00-03:50", "LC-II-G12"], + ], + semester: "MS", + }, + { + id: 322, + code: "CHC303", + name: "Process Design and Economics", + instructor: "Krishna Sandilya Durbha", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC303.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-G12"], + ["Wednesday", "05:00-05:50", "LC-II-G12"], + ["Friday", "04:00-04:50", "LC-II-G12"], + ], + semester: "MS", + }, + { + id: 323, + code: "CHC304", + name: "Chemical Kinetics and Reaction Engineering Lab", + instructor: "Aritra Santra,Krishna Sandilya Durbha", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC304.pdf", + credits: "0-0-3", + timetable: [], + semester: "MS", + }, + { + id: 324, + code: "CHC305", + name: "Mass Transfer Lab", + instructor: "Suman Dutta,Paidinaidu Paluri", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC305.pdf", + credits: "0-0-3", + timetable: [], + semester: "MS", + }, + { + id: 325, + code: "CHO404", + name: "AI in Process Industries", + instructor: "Soumyajit Sen Gupta", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO404.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "CHE-401"], + ["Thursday", "02:00-02:50", "CHE-401"], + ["Friday", "02:00-02:50", "CHE-401"], + ], + semester: "MS", + }, + { + id: 326, + code: "CSC301", + name: "Database Management Systems", + instructor: "Dharavath Ramesh", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G9"], + ["Tuesday", "05:00-05:50", "LC-II-G9"], + ["Thursday", "03:00-03:50", "LC-II-G9"], + ], + semester: "MS", + }, + { + id: 327, + code: "CSC302", + name: "Compiler Design", + instructor: "Arup Kumar Pal", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC302.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G9"], + ["Wednesday", "04:00-04:50", "LC-II-G9"], + ["Friday", "03:00-03:50", "LC-II-G9"], + ], + semester: "MS", + }, + { + id: 328, + code: "CSC303", + name: "Database Management Systems Lab", + instructor: "Dharavath Ramesh", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC303.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "NLHC Computer Lab - II"], + ["Wednesday", "12:00-12:50", "NLHC Computer Lab - II"], + ], + semester: "MS", + }, + { + id: 329, + code: "CSC304", + name: "Compiler Design Lab", + instructor: "Arup Kumar Pal", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC304.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "NLHC Computer Lab - II"], + ["Thursday", "10:00-10:50", "NLHC Computer Lab - II"], + ], + semester: "MS", + }, + { + id: 330, + code: "CSO303", + name: "Artificial Intelligence", + instructor: "Monidipa Das", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO303.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-G9"], + ["Wednesday", "05:00-05:50", "LC-II-G9"], + ["Friday", "04:00-04:50", "LC-II-G9"], + ], + semester: "MS", + }, + { + id: 331, + code: "CSO304", + name: "Digital Image Processing", + instructor: "Sushanta Mukhopadhyay", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO304.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "LC-II-C12"], + ["Thursday", "02:00-02:50", "LC-II-C12"], + ["Friday", "02:00-02:50", "LC-II-C12"], + ], + semester: "MS", + }, + { + id: 332, + code: "CEC301", + name: "Structural Analysis - II", + instructor: "Sanket Nayak", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C11"], + ["Tuesday", "05:00-05:50", "LC-II-C11"], + ["Thursday", "03:00-03:50", "LC-II-C11"], + ], + semester: "MS", + }, + { + id: 333, + code: "CEC302", + name: "Foundation Engineering", + instructor: "Sarat Kumar Das", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC302.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-C11"], + ["Wednesday", "04:00-04:50", "LC-II-C11"], + ["Friday", "03:00-03:50", "LC-II-C11"], + ], + semester: "MS", + }, + { + id: 334, + code: "CEC303", + name: "Structural Engineering Laboratory", + instructor: "Sekhar Chandra Dutta", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC303.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "11:00-11:50", "CEUG3"], + ["Monday", "10:00-10:50", "CEUG3"], + ], + semester: "MS", + }, + { + id: 335, + code: "CEC304", + name: "Geotechnical Engineering Laboratory", + instructor: "Sarat Kumar Das", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC304.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "CEDept"], + ["Thursday", "10:00-10:50", "CEDept"], + ], + semester: "MS", + }, + { + id: 336, + code: "CEO301", + name: "Reliability and Risk Assessment", + instructor: "Rahul Bhartiya", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO301.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 337, + code: "CEO401", + name: "Flow and Transport through Porous Media", + instructor: "Renu V", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO401.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-C12"], + ["Wednesday", "05:00-05:50", "LC-II-C12"], + ["Friday", "04:00-04:50", "LC-II-C12"], + ], + semester: "MS", + }, + { + id: 338, + code: "ECC301", + name: "Principles of Communication Systems", + instructor: "Amitesh Kumar", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G14"], + ["Tuesday", "05:00-05:50", "LC-II-G14"], + ["Thursday", "03:00-03:50", "LC-II-G14"], + ], + semester: "MS", + }, + { + id: 339, + code: "ECC302", + name: "Digital Signal Processing", + instructor: "Debjani Mitra", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC302.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G14"], + ["Wednesday", "04:00-04:50", "LC-II-G14"], + ["Friday", "03:00-03:50", "LC-II-G14"], + ], + semester: "MS", + }, + { + id: 340, + code: "ECC303", + name: "VLSI Design", + instructor: "Kaushik Mazumdar", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC303.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-G14"], + ["Wednesday", "05:00-05:50", "LC-II-G14"], + ["Friday", "04:00-04:50", "LC-II-G14"], + ], + semester: "MS", + }, + { + id: 341, + code: "ECC304", + name: "Digital Signal Processing Lab", + instructor: "Aman Sikri,Shalu Rani,Debjani Mitra", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC304.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", "Digital Signal Processing Lab (216)"], + ["Monday", "10:00-10:50", "Digital Signal Processing Lab (216)"], + ], + semester: "MS", + }, + { + id: 342, + code: "ECC305", + name: "Communication System Lab", + instructor: "Mrinal Sen,Govind Murmu,Amitesh Kumar", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC305.pdf", + credits: "0-0-3", + timetable: [ + ["Thursday", "11:00-11:50", "Communication Lab (215)"], + ["Thursday", "10:00-10:50", "Communication Lab (215)"], + ], + semester: "MS", + }, + { + id: 343, + code: "ECO302", + name: "Power Electronics", + instructor: "Sanjeev Kumar Raghuwanshi", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO302.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 344, + code: "EEC308", + name: "Electrical Machines - II", + instructor: "Sukanta Das", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC308.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G15"], + ["Tuesday", "05:00-05:50", "LC-II-G15"], + ["Thursday", "03:00-03:50", "LC-II-G15"], + ], + semester: "MS", + }, + { + id: 345, + code: "EEC309", + name: "Modern Control", + instructor: "Sanjoy Mandal", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC309.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G15"], + ["Wednesday", "04:00-04:50", "LC-II-G15"], + ["Friday", "03:00-03:50", "LC-II-G15"], + ], + semester: "MS", + }, + { + id: 346, + code: "EEC310", + name: "Power Electronics", + instructor: "Kartick Chandra Jana", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC310.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-G15"], + ["Wednesday", "05:00-05:50", "LC-II-G15"], + ["Friday", "04:00-04:50", "LC-II-G15"], + ], + semester: "MS", + }, + { + id: 347, + code: "EEC375", + name: "Microprocessor and Microcontrollers Lab", + instructor: "Kartick Chandra Jana,Biplab Bhattacharyya", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC375.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "10:00-10:50", "DE Lab"], + ["Monday", "11:00-11:50", "DE Lab"], + ], + semester: "MS", + }, + { + id: 348, + code: "EEC376", + name: "Electrical Machines and Control Lab", + instructor: "Sanjoy Mandal,Nitai Pal", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC376.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "El MC Lab"], + ["Thursday", "10:00-10:50", "El MC Lab"], + ], + semester: "MS", + }, + { + id: 349, + code: "EED402", + name: "High Voltage Engineering and Applications", + instructor: "Ananda Shankar Hati", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED402.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "LC-II-G15"], + ["Thursday", "02:00-02:50", "LC-II-G15"], + ["Friday", "02:00-02:50", "LC-II-G15"], + ], + semester: "MS", + }, + { + id: 350, + code: "ESC308", + name: "Environmental Geotechnology", + instructor: "Biswajit Paul", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC308.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C5"], + ["Tuesday", "05:00-05:50", "LC-II-C5"], + ["Thursday", "03:00-03:50", "LC-II-C5"], + ], + semester: "MS", + }, + { + id: 351, + code: "ESC309", + name: "Wastewater Treatment", + instructor: "Sunil Kumar Gupta", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC309.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-C5"], + ["Wednesday", "04:00-04:50", "LC-II-C5"], + ["Friday", "03:00-03:50", "LC-II-C5"], + ], + semester: "MS", + }, + { + id: 352, + code: "ESC310", + name: "Environmental Impact Assessment", + instructor: "Saravanan Pichiah", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC310.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-C5"], + ["Wednesday", "05:00-05:50", "LC-II-C5"], + ["Friday", "04:00-04:50", "LC-II-C5"], + ], + semester: "MS", + }, + { + id: 353, + code: "ESC355", + name: "Environmental Geotechnology Practical", + instructor: "Biswajit Paul", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC355.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "10:00-10:50", "lecture hall no"], + ["Monday", "11:00-11:50", "lecture hall no"], + ], + semester: "MS", + }, + { + id: 354, + code: "ESC356", + name: "Wastewater Engineering Practical", + instructor: "Alok Sinha", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC356.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "Wastewater Lab"], + ["Thursday", "10:00-10:50", "Wastewater Lab"], + ], + semester: "MS", + }, + { + id: 355, + code: "ESO401", + name: "Climate Change Impacts on Water Resources", + instructor: "Riya Dutta", + department: "Environmental Science & Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESO401.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 356, + code: "FMC301", + name: "Coal and Mineral Process Equipment Selection", + instructor: "Pankaj Kumar Jain", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "FME-1"], + ["Tuesday", "05:00-05:50", "FME-1"], + ["Thursday", "03:00-03:50", "FME-1"], + ], + semester: "MS", + }, + { + id: 357, + code: "FMC302", + name: "Extractive Metallurgy", + instructor: "Raj Kumar Dishwar", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC302.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "FME-1"], + ["Wednesday", "04:00-04:50", "FME-1"], + ["Friday", "03:00-03:50", "FME-1"], + ], + semester: "MS", + }, + { + id: 358, + code: "FMC306", + name: "Coal and Mineral Process Equipment Selection Laboratory", + instructor: "Pankaj Kumar Jain", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC306.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 359, + code: "FMC351", + name: "Extractive Metallurgy Laboratory", + instructor: "Raj Kumar Dishwar", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC351.pdf", + credits: "0-0-3", + timetable: [], + semester: "MS", + }, + { + id: 360, + code: "FMD401", + name: "Powder Metallurgy", + instructor: "Madhumanti Bhattacharyya", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD401.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 361, + code: "FMD402", + name: "Welding Metallurgy", + instructor: "Rahul M R", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD402.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 362, + code: "MNC300", + name: "Surface Mining", + instructor: "Sheo Shankar Rai", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC300.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G11"], + ["Tuesday", "05:00-05:50", "LC-II-G11"], + ["Thursday", "03:00-03:50", "LC-II-G11"], + ], + semester: "MS", + }, + { + id: 363, + code: "MNC301", + name: "Mine Planning and Economics", + instructor: "Ashok Kumar", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC301.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G11"], + ["Wednesday", "04:00-04:50", "LC-II-G11"], + ["Friday", "03:00-03:50", "LC-II-G11"], + ], + semester: "MS", + }, + { + id: 364, + code: "MNC302", + name: "Computer Aided Mine Planning and Design", + instructor: "Sheo Shankar Rai,Bhanwar Singh Choudhary", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC302.pdf", + credits: "0-0-3", + timetable: [], + semester: "MS", + }, + { + id: 365, + code: "MNC303", + name: "Mine Ventilation Practical - II", + instructor: "Ashok Kumar,Partha Sarathi Paul,Devi Prasad Mishra", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC303.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "Mine Ventilation Lab"], + ["Thursday", "10:00-10:50", "Mine Ventilation Lab"], + ], + semester: "MS", + }, + { + id: 366, + code: "MNO301", + name: "Modern Surveying Techniques", + instructor: "Ashok Kumar", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNO301.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-G11"], + ["Wednesday", "05:00-05:50", "LC-II-G11"], + ["Friday", "04:00-04:50", "LC-II-G11"], + ], + semester: "MS", + }, + { + id: 367, + code: "MNO303", + name: "Underground Construction Engineering", + instructor: "Gnananandh Budi", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNO303.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "LC-II-G11"], + ["Thursday", "02:00-02:50", "LC-II-G11"], + ["Friday", "02:00-02:50", "LC-II-G11"], + ], + semester: "MS", + }, + { + id: 368, + code: "MSO301", + name: "Operations Research", + instructor: "Shikha Singh", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MSO301.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "LC-II-G1"], + ["Thursday", "02:00-02:50", "LC-II-G1"], + ["Friday", "02:00-02:50", "LC-II-G1"], + ], + semester: "MS", + }, + { + id: 369, + code: "MSO404", + name: "Introduction to Operations Management", + instructor: "Esha Saha", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MSO404.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 370, + code: "MEC301", + name: "Machine Design", + instructor: "Sachin Kumar Singh", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "NLHC-G16"], + ["Tuesday", "05:00-05:50", "NLHC-G16"], + ["Thursday", "03:00-03:50", "NLHC-G16"], + ], + semester: "MS", + }, + { + id: 371, + code: "MEC302", + name: "Machining and Machine Tools", + instructor: "Amitava Mandal", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC302.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "NLHC-G16"], + ["Wednesday", "04:00-04:50", "NLHC-G16"], + ["Friday", "03:00-03:50", "NLHC-G16"], + ], + semester: "MS", + }, + { + id: 372, + code: "MEC303", + name: "Advanced Solid Mechanics", + instructor: "P K Mahato", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC303.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "NLHC-G16"], + ["Wednesday", "05:00-05:50", "NLHC-G16"], + ["Friday", "04:00-04:50", "NLHC-G16"], + ], + semester: "MS", + }, + { + id: 373, + code: "MEC304", + name: "Production Technology Lab", + instructor: "Amitava Mandal,Vivek Bajpai,Amit Rai Dixit", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC304.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 374, + code: "MEC305", + name: "Machine Design Lab", + instructor: "Sachin Kumar Singh,Md Sikandar Azam", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC305.pdf", + credits: "0-0-3", + timetable: [], + semester: "MS", + }, + { + id: 375, + code: "MEO302", + name: "Refrigeration and Air-conditioning", + instructor: "Satyabrata Sahoo", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO302.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "MME-C2"], + ["Thursday", "02:00-02:50", "MME-C2"], + ["Friday", "02:00-02:50", "MME-C2"], + ], + semester: "MS", + }, + { + id: 376, + code: "MED403", + name: "Power Plant", + instructor: "Deepak Kumar Mandal", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED403.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "LC-II-G16"], + ["Thursday", "02:00-02:50", "LC-II-G16"], + ["Friday", "02:00-02:50", "LC-II-G16"], + ], + semester: "MS", + }, + { + id: 377, + code: "MMC301", + name: "Mineral Beneficiation Equipment", + instructor: "Tanmay Dutta", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C1"], + ["Tuesday", "05:00-05:50", "LC-II-C1"], + ["Thursday", "03:00-03:50", "LC-II-C1"], + ], + semester: "MS", + }, + { + id: 378, + code: "MMC302", + name: "Automation and Control in Mining Machineries", + instructor: "Somnath Chattopadhyaya", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC302.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-C1"], + ["Wednesday", "04:00-04:50", "LC-II-C1"], + ["Friday", "03:00-03:50", "LC-II-C1"], + ], + semester: "MS", + }, + { + id: 379, + code: "MMC303", + name: "Mine Electrical Technology Lab", + instructor: "Somnath Chattopadhyaya", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC303.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "11:00-11:50", "MINE ELEC LAB"], + ["Monday", "10:00-10:50", "MINE ELEC LAB"], + ], + semester: "MS", + }, + { + id: 380, + code: "MMC304", + name: "Automation and Control Lab", + instructor: "Somnath Chattopadhyaya", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC304.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "MINE ELEC LAB"], + ["Thursday", "10:00-10:50", "MINE ELEC LAB"], + ], + semester: "MS", + }, + { + id: 381, + code: "MMO301", + name: "Automobile Engineering", + instructor: "L A Kumaraswamidhas", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMO301.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-C4"], + ["Wednesday", "05:00-05:50", "LC-II-C4"], + ["Friday", "04:00-04:50", "LC-II-C4"], + ], + semester: "MS", + }, + { + id: 382, + code: "PEC301", + name: "Applied Petroleum Reservoir Engineering and Management", + instructor: "Keka Ojha", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "PET 1"], + ["Tuesday", "05:00-05:50", "PET 1"], + ["Thursday", "03:00-03:50", "PET 1"], + ], + semester: "MS", + }, + { + id: 383, + code: "PEC302", + name: "Petroleum Production Operations", + instructor: "Vikas Mahto", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC302.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "03:00-03:50", "PET 1"], + ["Wednesday", "04:00-04:50", "PET 1"], + ["Friday", "03:00-03:50", "PET 1"], + ], + semester: "MS", + }, + { + id: 384, + code: "PEC303", + name: "Natural Gas Engineering", + instructor: "Tarun Kumar Naiya", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC303.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "PET 1"], + ["Wednesday", "05:00-05:50", "PET 1"], + ["Friday", "04:00-04:50", "PET 1"], + ], + semester: "MS", + }, + { + id: 385, + code: "PEC304", + name: "Petroleum Production Engineering Practical", + instructor: "Vinay Kumar Rajak,Tarun Kumar Naiya", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC304.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 386, + code: "PEC305", + name: "Process Engineering Practical", + instructor: "Raj Kiran,Ajay Mandal", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC305.pdf", + credits: "0-0-2", + timetable: [], + semester: "MS", + }, + { + id: 387, + code: "PEO404", + name: "Petroleum Resource Management and Project Evaluation", + instructor: "Pawan Gupta", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO404.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "PET 3"], + ["Thursday", "02:00-02:50", "PET 3"], + ["Friday", "02:00-02:50", "PET 3"], + ], + semester: "MS", + }, + { + id: 388, + code: "PHC300", + name: "Thermal Physics Lab", + instructor: "Binata Panda", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC300.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "11:00-11:50", "PHUG LAB-2"], + ["Monday", "10:00-10:50", "PHUG LAB-2"], + ], + semester: "MS", + }, + { + id: 389, + code: "PHC301", + name: "Electronics Lab", + instructor: "Jhasaketan Nayak", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC301.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "PHUG LAB-2"], + ["Thursday", "10:00-10:50", "PHUG LAB-2"], + ], + semester: "MS", + }, + { + id: 390, + code: "PHC514", + name: "Statistical Mechanics", + instructor: "Pankaj Mishra", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC514.pdf", + credits: "3-1-0", + timetable: [], + semester: "MS", + }, + { + id: 391, + code: "PHC515", + name: "Laser Physics and Technology", + instructor: "Vineet Kumar Rai", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC515.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 392, + code: "PHO300", + name: "Sensors and Transducers", + instructor: "Jhasaketan Nayak", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO300.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-I-C18"], + ["Wednesday", "05:00-05:50", "LC-I-C18"], + ["Friday", "04:00-04:50", "LC-I-C18"], + ], + semester: "MS", + }, + { + id: 393, + code: "PHO302", + name: "Introduction to Astrophysics and Astronomy", + instructor: "Esha Kundu", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO302.pdf", + credits: "3-0-0", + timetable: [], + semester: "MS", + }, + { + id: 394, + code: "CSC504", + name: "Computing Techniques and Mathematical Tools", + instructor: "Hari Om", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "CSE CR1"], + ["Tuesday", "09:00-09:50", "CSE CR1"], + ["Thursday", "11:00-11:50", "CSE CR1"], + ], + semester: "MS", + }, + { + id: 395, + code: "CSC507", + name: "Computing Techniques and Mathematical Tools Lab", + instructor: "Prasanta K. Jana", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC507.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "04:00-04:50", "CSE LAB - III"], + ["Monday", "03:00-03:50", "CSE LAB - III"], + ], + semester: "MS", + }, + { + id: 396, + code: "CHC206", + name: "Chemical Engineering Thermodynamics", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C9"], + ["Wednesday", "09:00-09:50", "LC-II-C9"], + ["Friday", "09:00-09:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 397, + code: "CHC207", + name: "Principles of Mass Transfer", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC207.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C9"], + ["Tuesday", "08:00-08:50", " "], + ["Wednesday", "10:00-10:50", "LC-II-C9"], + ["Thursday", "11:00-11:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 398, + code: "CHC208", + name: "Chemical Process Technology", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC208.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C9"], + ["Tuesday", "09:00-09:50", "LC-II-C9"], + ["Thursday", "09:00-09:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 399, + code: "CHC209", + name: "Process Dynamics and Control", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC209.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C9"], + ["Wednesday", "11:00-11:50", "LC-II-C9"], + ["Thursday", "10:00-10:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 400, + code: "CHC210", + name: "Heat Transfer Lab", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC210.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", " "], + ["Monday", "04:00-04:50", " "], + ["Thursday", "04:00-04:50", " "], + ["Thursday", "05:00-05:50", " "], + ], + semester: "WS", + }, + { + id: 401, + code: "CHC211", + name: "Process Control Lab", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC211.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "06:00-06:50", " "], + ["Thursday", "06:00-06:50", " "], + ], + semester: "WS", + }, + { + id: 402, + code: "CHE202", + name: "Transport Phenomena", + instructor: "n/a", + department: "Chemical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-C9"], + ["Wednesday", "08:00-08:50", "LC-II-C9"], + ["Friday", "08:00-08:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 403, + code: "CSC206", + name: "Algorithm Design & Analysis", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G14"], + ["Wednesday", "09:00-09:50", "LC-II-G14"], + ["Friday", "09:00-09:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 404, + code: "CSC207", + name: "Computer Architecture", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G14"], + ["Wednesday", "10:00-10:50", "LC-II-G14"], + ["Thursday", "11:00-11:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 405, + code: "CSC208", + name: "Theory of Computation", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC208.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G14"], + ["Tuesday", "09:00-09:50", "LC-II-G14"], + ["Thursday", "09:00-09:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 406, + code: "CSC209", + name: "Operating Systems", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC209.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G14"], + ["Wednesday", "11:00-11:50", "LC-II-G14"], + ["Thursday", "10:00-10:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 407, + code: "CSC210", + name: "Algorithm Design & Analysis Lab", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC210.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "NLHC Computer Lab - I"], + ["Monday", "04:00-04:50", "NLHC Computer Lab - I"], + ], + semester: "WS", + }, + { + id: 408, + code: "CSC211", + name: "Operating Systems Lab", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC211.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "NLHC Computer Lab - I"], + ["Thursday", "04:00-04:50", "NLHC Computer Lab - I"], + ], + semester: "WS", + }, + { + id: 409, + code: "CSE202", + name: "Object Oriented Programming", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-G1"], + ["Wednesday", "08:00-08:50", "LC-II-G1"], + ["Friday", "08:00-08:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 410, + code: "CEC206", + name: "Structural Analysis - I", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC206.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C2"], + ["Wednesday", "09:00-09:50", "LC-II-C2"], + ["Friday", "09:00-09:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 411, + code: "CEC207", + name: "Design of Concrete Structures", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C2"], + ["Wednesday", "10:00-10:50", "LC-II-C2"], + ["Thursday", "11:00-11:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 412, + code: "CEC208", + name: "Geotechnical Engineering", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC208.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C2"], + ["Tuesday", "09:00-09:50", "LC-II-C2"], + ["Thursday", "09:00-09:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 413, + code: "CEC209", + name: "Transportation Engineering", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC209.pdf", + credits: "03-01-2000", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C2"], + ["Wednesday", "11:00-11:50", "LC-II-C2"], + ["Thursday", "10:00-10:50", "LC-II-C2"], + ["Friday", "10:00-10:50", " "], + ], + semester: "WS", + }, + { + id: 414, + code: "CEC210", + name: "Surveying Laboratory", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC210.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "CEUG1"], + ["Monday", "04:00-04:50", "CEUG1"], + ], + semester: "WS", + }, + { + id: 415, + code: "CEC211", + name: "Transportation Engineering Laboratory", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC211.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "CEUG2"], + ["Thursday", "04:00-04:50", "CEUG2"], + ], + semester: "WS", + }, + { + id: 416, + code: "CEE202", + name: "Fluid Mechanics and Machines", + instructor: "n/a", + department: "Civil Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-G6"], + ["Wednesday", "08:00-08:50", "LC-II-G6"], + ["Friday", "08:00-08:50", "LC-II-G6"], + ], + semester: "WS", + }, + { + id: 417, + code: "ECC206", + name: "Analog Circuits", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC206.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G2"], + ["Wednesday", "09:00-09:50", "LC-II-G2"], + ["Friday", "09:00-09:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 418, + code: "ECC207", + name: "Electromagnetic Theory", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G2"], + ["Wednesday", "10:00-10:50", "LC-II-G2"], + ["Thursday", "11:00-11:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 419, + code: "ECC208", + name: "Control Systems", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC208.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G2"], + ["Tuesday", "09:00-09:50", "LC-II-G2"], + ["Thursday", "09:00-09:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 420, + code: "ECC209", + name: "Microprocessors & Microcontrollers", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC209.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G2"], + ["Wednesday", "11:00-11:50", "LC-II-G2"], + ["Thursday", "10:00-10:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 421, + code: "ECC210", + name: "Electronic Devices and Circuits Lab", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC210.pdf", + credits: "0-0-3", + timetable: [], + semester: "WS", + }, + { + id: 422, + code: "ECC211", + name: "Microprocessor & Microcontroller Lab", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC211.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "Digital Electronics Lab (635)"], + ["Thursday", "04:00-04:50", "Digital Electronics Lab (635)"], + ], + semester: "WS", + }, + { + id: 423, + code: "ECE201", + name: "Measurements and Instrumentations", + instructor: "n/a", + department: "Electronics Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECE201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-G2"], + ["Wednesday", "08:00-08:50", "LC-II-G2"], + ["Friday", "08:00-08:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 424, + code: "EEC204", + name: "Electrical Machines - I", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC204.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G16"], + ["Wednesday", "09:00-09:50", "LC-II-G16"], + ["Friday", "09:00-09:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 425, + code: "EEC205", + name: "Electrical Measurements", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC205.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G16"], + ["Wednesday", "10:00-10:50", "LC-II-G16"], + ["Thursday", "11:00-11:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 426, + code: "EEC206", + name: "Control System Engineering", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G16"], + ["Tuesday", "09:00-09:50", "LC-II-G16"], + ["Thursday", "09:00-09:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 427, + code: "EEC207", + name: "Power System Engineering", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC207.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G16"], + ["Wednesday", "11:00-11:50", "LC-II-G16"], + ["Thursday", "10:00-10:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 428, + code: "EEC273", + name: "Control and Measurement lab", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC273.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 429, + code: "EEC274", + name: "Electrical Machines and Power lab", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC274.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "El MC Lab"], + ["Thursday", "04:00-04:50", "El MC Lab"], + ], + semester: "WS", + }, + { + id: 430, + code: "EEE201", + name: "Applied Electrical Engineering", + instructor: "n/a", + department: "Electrical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEE201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", " "], + ["Wednesday", "08:00-08:50", " "], + ["Friday", "08:00-08:50", " "], + ], + semester: "WS", + }, + { + id: 431, + code: "ESC204", + name: "Geology and Land use Planning", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC204.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C20"], + ["Wednesday", "09:00-09:50", "LC-II-C20"], + ["Friday", "09:00-09:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 432, + code: "ESC205", + name: "Introduction Ecology and Environmental Microbiology", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC205.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C20"], + ["Wednesday", "10:00-10:50", "LC-II-C20"], + ["Thursday", "11:00-11:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 433, + code: "ESC206", + name: "Environmental Policy and Legislation", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C20"], + ["Tuesday", "09:00-09:50", "LC-II-C20"], + ["Thursday", "09:00-09:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 434, + code: "ESC207", + name: "Air Pollution Control", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC207.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C20"], + ["Wednesday", "11:00-11:50", "LC-II-C20"], + ["Thursday", "10:00-10:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 435, + code: "ESC253", + name: "Geology Practical", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC253.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "Water Chemistry Lab"], + ["Monday", "04:00-04:50", "Water Chemistry Lab"], + ], + semester: "WS", + }, + { + id: 436, + code: "ESC254", + name: "Soil and Environmental Microbiology Practical", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC254.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "Microbiology Lab "], + ["Thursday", "04:00-04:50", "Microbiology Lab "], + ], + semester: "WS", + }, + { + id: 437, + code: "ESE202", + name: "Atmospheric Science and Climate Change", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-C20"], + ["Wednesday", "08:00-08:50", "LC-II-C20"], + ["Friday", "08:00-08:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 438, + code: "FMC204", + name: "Electrochemistry and Corrosion", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC204.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "FME-1"], + ["Tuesday", "09:00-09:50", "FME-1"], + ["Thursday", "09:00-09:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 439, + code: "FMC205", + name: "Thermodynamics and Kinetics", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC205.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "FME-1"], + ["Wednesday", "10:00-10:50", "FME-1"], + ["Thursday", "11:00-11:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 440, + code: "FMC206", + name: "Phase Transformation and Heat Treatment", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "FME-1"], + ["Wednesday", "09:00-09:50", "FME-1"], + ["Friday", "09:00-09:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 441, + code: "FMC207", + name: "Fine Particle Processing for Coal and Minerals", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC207.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "FME-1"], + ["Wednesday", "11:00-11:50", "FME-1"], + ["Thursday", "10:00-10:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 442, + code: "FMC253", + name: "Fine Particle Processing Laboratory", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC253.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 443, + code: "FMC254", + name: "Introduction to Fuel Technology Laboratory", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC254.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 444, + code: "FME222", + name: "Introduction to Fuel Technology", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FME222.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-C5"], + ["Wednesday", "08:00-08:50", "LC-II-C5"], + ["Friday", "08:00-08:50", "LC-II-C5"], + ], + semester: "WS", + }, + { + id: 445, + code: "MNC205", + name: "Rock Mechanics", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC205.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G3"], + ["Wednesday", "09:00-09:50", "LC-II-G3"], + ["Friday", "09:00-09:50", "LC-II-G3"], + ], + semester: "WS", + }, + { + id: 446, + code: "MNC206", + name: "Mine Ventilation", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G3"], + ["Wednesday", "10:00-10:50", "LC-II-G3"], + ["Thursday", "11:00-11:50", "LC-II-G3"], + ], + semester: "WS", + }, + { + id: 447, + code: "MNC207", + name: "Underground Metal Mining", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G3"], + ["Tuesday", "09:00-09:50", "LC-II-G3"], + ["Thursday", "09:00-09:50", "LC-II-G3"], + ], + semester: "WS", + }, + { + id: 448, + code: "MNC208", + name: "Underground Coal Mining", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC208.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G3"], + ["Wednesday", "11:00-11:50", "LC-II-G3"], + ["Thursday", "10:00-10:50", "LC-II-G3"], + ], + semester: "WS", + }, + { + id: 449, + code: "MNC209", + name: "Rock Mechanics Practical", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC209.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "05:00-05:50", " "], + ["Tuesday", "04:00-04:50", " "], + ["Wednesday", "05:00-05:50", " "], + ["Wednesday", "04:00-04:50", " "], + ], + semester: "WS", + }, + { + id: 450, + code: "MNC210", + name: "Mine Ventilation practical - I", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC210.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 451, + code: "MNE202", + name: "Introductory Rock Mechanics", + instructor: "n/a", + department: "Mining Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNE202.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 452, + code: "MEC206", + name: "Fluid Machines", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G1"], + ["Wednesday", "09:00-09:50", "LC-II-G1"], + ["Friday", "09:00-09:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 453, + code: "MEC207", + name: "Dynamics of Machinery", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G1"], + ["Wednesday", "10:00-10:50", "LC-II-G1"], + ["Thursday", "11:00-11:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 454, + code: "MEC208", + name: "Heat and Mass Transfer", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC208.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G1"], + ["Tuesday", "09:00-09:50", "LC-II-G1"], + ["Thursday", "09:00-09:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 455, + code: "MEC209", + name: "Production Technology", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC209.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G1"], + ["Wednesday", "11:00-11:50", "LC-II-G1"], + ["Thursday", "10:00-10:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 456, + code: "MEC210", + name: "Heat Transfer and Fluid Machines Lab", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC210.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 457, + code: "MEC211", + name: "Machine Dynamics and Solid Modeling Lab", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC211.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "03:00-03:50", " "], + ["Thursday", "02:00-02:50", " "], + ], + semester: "WS", + }, + { + id: 458, + code: "MEE202", + name: "Computer Aided Engineering Design", + instructor: "n/a", + department: "Mechanical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEE202.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 459, + code: "MMC206", + name: "Mine Electrical Technology", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC206.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C4"], + ["Wednesday", "09:00-09:50", "LC-II-C4"], + ["Thursday", "08:00-08:50", " "], + ["Friday", "09:00-09:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 460, + code: "MMC207", + name: "Bulk Material Handling Equipment", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C4"], + ["Wednesday", "10:00-10:50", "LC-II-C4"], + ["Thursday", "11:00-11:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 461, + code: "MMC208", + name: "Design of Mining Equipment Components", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC208.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C4"], + ["Tuesday", "09:00-09:50", "LC-II-C4"], + ["Thursday", "09:00-09:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 462, + code: "MMC209", + name: "Hydraulics & Pneumatics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC209.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C4"], + ["Wednesday", "11:00-11:50", "LC-II-C4"], + ["Thursday", "10:00-10:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 463, + code: "MMC210", + name: "Hydraulics & Pneumatics Lab", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC210.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "PH&P LAB"], + ["Monday", "04:00-04:50", "PH&P LAB"], + ], + semester: "WS", + }, + { + id: 464, + code: "MMC211", + name: "Manufacturing Technology and Soft Computing Lab", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC211.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "Workshop"], + ["Thursday", "04:00-04:50", "Workshop"], + ], + semester: "WS", + }, + { + id: 465, + code: "MME201", + name: "IC Engines", + instructor: "n/a", + department: "Mechanical Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MME201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-C4"], + ["Wednesday", "08:00-08:50", "LC-II-C4"], + ["Friday", "08:00-08:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 466, + code: "PEC206", + name: "Elements of Petroleum Production Engineering", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "PET 2"], + ["Wednesday", "09:00-09:50", "PET 2"], + ["Friday", "09:00-09:50", "PET 2"], + ], + semester: "WS", + }, + { + id: 467, + code: "PEC207", + name: "Petroleum Formation Evaluation", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "PET 2"], + ["Wednesday", "10:00-10:50", "PET 2"], + ["Thursday", "11:00-11:50", "PET 2"], + ], + semester: "WS", + }, + { + id: 468, + code: "PEC208", + name: "Reservoir Fluid Thermodynamics", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC208.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "PET 2"], + ["Tuesday", "09:00-09:50", "PET 2"], + ["Thursday", "09:00-09:50", "PET 2"], + ], + semester: "WS", + }, + { + id: 469, + code: "PEC209", + name: "Petroleum Product Testing Practical", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC209.pdf", + credits: "0-0-2", + timetable: [["Tuesday", "03:00-03:50", " "]], + semester: "WS", + }, + { + id: 470, + code: "PEC210", + name: "Drilling Simulation Practical", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC210.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 471, + code: "PEE202", + name: "Petroleum Environmental Management", + instructor: "n/a", + department: "Petroleum Engineering", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "PET 2"], + ["Wednesday", "08:00-08:50", "PET 2"], + ["Friday", "08:00-08:50", "PET 2"], + ], + semester: "WS", + }, + { + id: 472, + code: "PHC205", + name: "Introduction to Quantum Mechanics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC205.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C15"], + ["Wednesday", "09:00-09:50", "LC-II-C15"], + ["Friday", "09:00-09:50", "LC-II-C15"], + ], + semester: "WS", + }, + { + id: 473, + code: "PHC206", + name: "Applied Optics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C15"], + ["Wednesday", "10:00-10:50", "LC-II-C15"], + ["Thursday", "11:00-11:50", "LC-II-C15"], + ], + semester: "WS", + }, + { + id: 474, + code: "PHC207", + name: "Nuclear Science and Engineering", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C15"], + ["Tuesday", "09:00-09:50", "LC-II-C15"], + ["Thursday", "09:00-09:50", "LC-II-C15"], + ], + semester: "WS", + }, + { + id: 475, + code: "PHC208", + name: "Electrodynamics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC208.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C15"], + ["Wednesday", "11:00-11:50", "LC-II-C15"], + ["Thursday", "10:00-10:50", "LC-II-C15"], + ], + semester: "WS", + }, + { + id: 476, + code: "PHC209", + name: "Optics Lab", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC209.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "PHUG LAB-2"], + ["Monday", "04:00-04:50", "PHUG LAB-2"], + ], + semester: "WS", + }, + { + id: 477, + code: "PHC210", + name: "Electricity and Magnetism Lab", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC210.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "PHUG LAB-2"], + ["Thursday", "04:00-04:50", "PHUG LAB-2"], + ], + semester: "WS", + }, + { + id: 478, + code: "PHE202", + name: "Material Science and Engineering", + instructor: "n/a", + department: "Physics", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHE202.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-C15"], + ["Wednesday", "08:00-08:50", "LC-II-C15"], + ["Friday", "08:00-08:50", "LC-II-C15"], + ], + semester: "WS", + }, + { + id: 479, + code: "CHC306", + name: "Chemical Process Equipment Design", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC306.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C9"], + ["Wednesday", "02:00-02:50", "LC-II-C9"], + ["Friday", "02:00-02:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 480, + code: "CHC307", + name: "Process Modelling and Simulation", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC307.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-C9"], + ["Wednesday", "06:00-06:50", "LC-II-C9"], + ["Friday", "06:00-06:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 481, + code: "CHC308", + name: "Chemical Process Equipment Design Lab", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC308.pdf", + credits: "0-0-3", + timetable: [ + ["Tuesday", "11:00-11:50", "CSE LAB - III"], + ["Tuesday", "10:00-10:50", "CSE LAB - III"], + ["Tuesday", "12:00-12:50", " "], + ], + semester: "WS", + }, + { + id: 482, + code: "CHC309", + name: "Process Simulation Lab", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC309.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "NLHC Computer lab 3"], + ["Thursday", "10:00-10:50", "NLHC Computer lab 3"], + ], + semester: "WS", + }, + { + id: 483, + code: "CHD402", + name: "Polymers Science and Engineering", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD402.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "CHE-423"], + ["Thursday", "02:00-02:50", "CHE-423"], + ["Friday", "03:00-03:50", "CHE-423"], + ], + semester: "WS", + }, + { + id: 484, + code: "CHO301", + name: "Petroleum Refining", + instructor: "n/a", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-C9"], + ["Wednesday", "04:00-04:50", "LC-II-C9"], + ["Friday", "04:00-04:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 485, + code: "CHO302", + name: "Industrial Safety and Hazards Management", + instructor: "n/a", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO302.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C9"], + ["Wednesday", "03:00-03:50", "LC-II-C9"], + ["Thursday", "03:00-03:50", "LC-II-C9"], + ], + semester: "WS", + }, + { + id: 486, + code: "CSC305", + name: "Computer Network", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC305.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G9"], + ["Wednesday", "02:00-02:50", "LC-II-G9"], + ["Friday", "02:00-02:50", "LC-II-G9"], + ], + semester: "WS", + }, + { + id: 487, + code: "CSC306", + name: "Software Engineering", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC306.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-G9"], + ["Wednesday", "06:00-06:50", "LC-II-G9"], + ["Friday", "06:00-06:50", "LC-II-G9"], + ], + semester: "WS", + }, + { + id: 488, + code: "CSC307", + name: "Computer Networks Lab", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC307.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "11:00-11:50", "NLHC Computer Lab - I"], + ["Tuesday", "10:00-10:50", "NLHC Computer Lab - I"], + ], + semester: "WS", + }, + { + id: 489, + code: "CSC308", + name: "Software Engineering Lab", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC308.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "10:00-10:50", "CSE LAB - III"], + ["Thursday", "11:00-11:50", "CSE LAB - III"], + ], + semester: "WS", + }, + { + id: 490, + code: "CSO302", + name: "Graph Theory", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO302.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C6"], + ["Wednesday", "03:00-03:50", "LC-II-C6"], + ["Thursday", "03:00-03:50", "LC-II-C6"], + ], + semester: "WS", + }, + { + id: 491, + code: "CSO304", + name: "Digital Image Processing", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO304.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-C6"], + ["Thursday", "02:00-02:50", "LC-II-C6"], + ["Friday", "03:00-03:50", "LC-II-C6"], + ], + semester: "WS", + }, + { + id: 492, + code: "CSO506", + name: "Principles of Blockchain Technologies", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO506.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-G15"], + ["Wednesday", "04:00-04:50", "LC-II-G15"], + ["Friday", "04:00-04:50", "LC-II-G15"], + ], + semester: "WS", + }, + { + id: 493, + code: "CEC305", + name: "Design of Steel Structures", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC305.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C5"], + ["Wednesday", "02:00-02:50", "LC-II-C5"], + ["Friday", "02:00-02:50", "LC-II-C5"], + ], + semester: "WS", + }, + { + id: 494, + code: "CEC306", + name: "Water Resources Engineering", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC306.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-C5"], + ["Wednesday", "06:00-06:50", "LC-II-C5"], + ["Friday", "06:00-06:50", "LC-II-C5"], + ], + semester: "WS", + }, + { + id: 495, + code: "CEC307", + name: "Structural Detailing Laboratory", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC307.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "11:00-11:50", "CEUG3"], + ["Tuesday", "10:00-10:50", "CEUG3"], + ], + semester: "WS", + }, + { + id: 496, + code: "CEC308", + name: "Water Resources Engineering Laboratory", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC308.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "10:00-10:50", "CEUG4"], + ["Thursday", "11:00-11:50", "CEUG4"], + ], + semester: "WS", + }, + { + id: 497, + code: "CEO303", + name: "Construction Management", + instructor: "n/a", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO303.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-C4"], + ["Thursday", "02:00-02:50", "LC-II-C4"], + ["Friday", "03:00-03:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 498, + code: "CEO525", + name: "Optimization Methods", + instructor: "n/a", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO525.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C4"], + ["Wednesday", "03:00-03:50", "LC-II-C4"], + ["Thursday", "03:00-03:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 499, + code: "CEO527", + name: "Bridge Engineering", + instructor: "n/a", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO527.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-C4"], + ["Wednesday", "04:00-04:50", "LC-II-C4"], + ["Friday", "04:00-04:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 500, + code: "ECC306", + name: "Digital Communication", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC306.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G12"], + ["Wednesday", "02:00-02:50", "LC-II-G12"], + ["Friday", "02:00-02:50", "LC-II-G12"], + ], + semester: "WS", + }, + { + id: 501, + code: "ECC307", + name: "Microwave Engineering", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC307.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-G12"], + ["Wednesday", "06:00-06:50", "LC-II-G12"], + ["Friday", "06:00-06:50", "LC-II-G12"], + ], + semester: "WS", + }, + { + id: 502, + code: "ECC308", + name: "Digital Communication Lab", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC308.pdf", + credits: "0-0-3", + timetable: [ + ["Tuesday", "11:00-11:50", " "], + ["Tuesday", "10:00-10:50", " "], + ], + semester: "WS", + }, + { + id: 503, + code: "ECC309", + name: "Microwave Engineering Lab", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC309.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "Microwave & Antenna Lab (232)"], + ["Thursday", "10:00-10:50", "Microwave & Antenna Lab (232)"], + ], + semester: "WS", + }, + { + id: 504, + code: "ECO301", + name: "Microprocessor and its Application", + instructor: "n/a", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO301.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-I-C12"], + ["Thursday", "02:00-02:50", "LC-I-C12"], + ["Friday", "03:00-03:50", "LC-I-C12"], + ], + semester: "WS", + }, + { + id: 505, + code: "ECO302", + name: "Power Electronics", + instructor: "n/a", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO302.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G7"], + ["Wednesday", "03:00-03:50", "LC-II-G7"], + ["Thursday", "03:00-03:50", "LC-II-G7"], + ], + semester: "WS", + }, + { + id: 506, + code: "ECO402", + name: "Optical Fiber Sensor", + instructor: "n/a", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO402.pdf", + credits: "3-0-0", + timetable: [["Friday", "04:00-04:50", " "]], + semester: "WS", + }, + { + id: 507, + code: "EEC311", + name: "Power System Analysis and Control", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC311.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G14"], + ["Wednesday", "02:00-02:50", "LC-II-G14"], + ["Friday", "02:00-02:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 508, + code: "EEC312", + name: "Electrical Drives and Applications", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC312.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-G14"], + ["Wednesday", "06:00-06:50", "LC-II-G14"], + ["Friday", "06:00-06:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 509, + code: "EEC377", + name: "Power and Switchgear Lab", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC377.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 510, + code: "EEC378", + name: "Power Electronics and Drives lab", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC378.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "PE Lab"], + ["Thursday", "10:00-10:50", "PE Lab"], + ], + semester: "WS", + }, + { + id: 511, + code: "EED505", + name: "Power Electronics for Renewable Energy Systems", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED505.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", " "], + ["Wednesday", "03:00-03:50", " "], + ], + semester: "WS", + }, + { + id: 512, + code: "EEO301", + name: "Microprocessor & Microcontroller", + instructor: "n/a", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO301.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-G14"], + ["Thursday", "02:00-02:50", "LC-II-G14"], + ["Friday", "03:00-03:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 513, + code: "EEO302", + name: "Industrial Utilization of Electrical Power", + instructor: "n/a", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO302.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "PET 4"], + ["Wednesday", "04:00-04:50", "PET 4"], + ["Friday", "04:00-04:50", "PET 4"], + ], + semester: "WS", + }, + { + id: 514, + code: "ESC311", + name: "Solid Waste Management", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC311.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "FME-2"], + ["Wednesday", "02:00-02:50", "FME-2"], + ["Friday", "02:00-02:50", "FME-2"], + ], + semester: "WS", + }, + { + id: 515, + code: "ESC312", + name: "Geoinformatics", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC312.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "FME-2"], + ["Wednesday", "06:00-06:50", "FME-2"], + ["Friday", "06:00-06:50", "FME-2"], + ], + semester: "WS", + }, + { + id: 516, + code: "ESC357", + name: "Solid Waste Management Practical", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC357.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "11:00-11:50", "Wastewater Lab"], + ["Tuesday", "10:00-10:50", "Wastewater Lab"], + ], + semester: "WS", + }, + { + id: 517, + code: "ESC358", + name: "Geoinformatics Practical", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC358.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "Remote Sensing & GIS Lab"], + ["Thursday", "10:00-10:50", "Remote Sensing & GIS Lab"], + ], + semester: "WS", + }, + { + id: 518, + code: "ESD404", + name: "Water Resource Planning and Management", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD404.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "FME-2"], + ["Thursday", "02:00-02:50", "FME-2"], + ["Friday", "03:00-03:50", "FME-2"], + ], + semester: "WS", + }, + { + id: 519, + code: "ESD508", + name: "Social Impact Assessment and R&R", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "FME-2"], + ["Wednesday", "03:00-03:50", "FME-2"], + ["Thursday", "03:00-03:50", "FME-2"], + ], + semester: "WS", + }, + { + id: 520, + code: "ESD513", + name: "Energy Auditing and Management", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD513.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "FME-2"], + ["Wednesday", "04:00-04:50", "FME-2"], + ["Friday", "04:00-04:50", "FME-2"], + ], + semester: "WS", + }, + { + id: 521, + code: "ESO301", + name: "Applied Statistics for Environmental Engineering", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESO301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C15"], + ["Wednesday", "03:00-03:50", "LC-II-C15"], + ["Thursday", "03:00-03:50", "LC-II-C15"], + ], + semester: "WS", + }, + { + id: 522, + code: "FMC303", + name: "Mechanical Metallurgy", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC303.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-C8"], + ["Wednesday", "06:00-06:50", "LC-II-C8"], + ["Friday", "06:00-06:50", "LC-II-C8"], + ], + semester: "WS", + }, + { + id: 523, + code: "FMC304", + name: "Coal and Mineral Processing Plant Design", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC304.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C8"], + ["Wednesday", "02:00-02:50", "LC-II-C8"], + ["Friday", "02:00-02:50", "LC-II-C8"], + ], + semester: "WS", + }, + { + id: 524, + code: "FMC305", + name: "Coal and Mineral Processing Plant Design Laboratory", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC305.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", " "], + ["Thursday", "10:00-10:50", " "], + ], + semester: "WS", + }, + { + id: 525, + code: "FMC352", + name: "Heat Treatment and Mechanical Metallurgy Laboratory", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC352.pdf", + credits: "0-0-3", + timetable: [], + semester: "WS", + }, + { + id: 526, + code: "FMD463", + name: "Non Ferrous Extractive Metallurgy", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD463.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C8"], + ["Wednesday", "03:00-03:50", "LC-II-C8"], + ["Thursday", "03:00-03:50", "LC-II-C8"], + ], + semester: "WS", + }, + { + id: 527, + code: "FMD464", + name: "Mineral Policy and Economics", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD464.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 528, + code: "FMO431", + name: "Elements of Mineral Engineering", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMO431.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-C8"], + ["Thursday", "02:00-02:50", "LC-II-C8"], + ["Friday", "03:00-03:50", "LC-II-C8"], + ], + semester: "WS", + }, + { + id: 529, + code: "HSD512", + name: "Gender Studies", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSD512.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-G9"], + ["Wednesday", "04:00-04:50", "LC-II-G9"], + ["Friday", "04:00-04:50", "LC-II-G9"], + ], + semester: "WS", + }, + { + id: 530, + code: "HSD533", + name: "Introduction to Yoga Philosophy", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSD533.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", " "], + ["Friday", "03:00-03:50", " "], + ], + semester: "WS", + }, + { + id: 531, + code: "HSO307", + name: "Philosophy and Critical Thinking", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSO307.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-G4"], + ["Wednesday", "04:00-04:50", "LC-II-G4"], + ["Friday", "04:00-04:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 532, + code: "HSO308", + name: "Social Psychology", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSO308.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 533, + code: "HSO320", + name: "Principles of Sociology", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSO320.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 534, + code: "HSO511", + name: "Brain and Behaviour", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSO511.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 535, + code: "HSO512", + name: "Experience Psychology", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSO512.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 536, + code: "HSO514", + name: "Introduction to Climate Change and Society", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/HSO514.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 537, + code: "MNC304", + name: "Mine Legislation and Safety", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC304.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G15"], + ["Wednesday", "02:00-02:50", "LC-II-G15"], + ["Friday", "02:00-02:50", "LC-II-G15"], + ], + semester: "WS", + }, + { + id: 538, + code: "MNC305", + name: "Mine Automation and Data Analytics", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC305.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-G15"], + ["Wednesday", "06:00-06:50", "LC-II-G15"], + ["Friday", "06:00-06:50", "LC-II-G15"], + ], + semester: "WS", + }, + { + id: 539, + code: "MNC306", + name: "Mine Data Analytics Practical", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC306.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 540, + code: "MNC307", + name: "Numerical Modelling/Remote Sensing & GIS Practical", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC307.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 541, + code: "MNO302", + name: "Seabed Mining and Asteroid Mining", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNO302.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 542, + code: "MNO304", + name: "Coal Mine Methane Recovery and Utilization", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNO304.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 543, + code: "MNO401", + name: "Rock Engineering", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNO401.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "MIN- Seminar Hall"], + ["Thursday", "02:00-02:50", "MIN- Seminar Hall"], + ["Friday", "03:00-03:50", "MIN- Seminar Hall"], + ], + semester: "WS", + }, + { + id: 544, + code: "MEC306", + name: "Computer Aided Manufacturing", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC306.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G10"], + ["Wednesday", "02:00-02:50", "LC-II-G10"], + ["Friday", "02:00-02:50", "LC-II-G10"], + ], + semester: "WS", + }, + { + id: 545, + code: "MEC307", + name: "IC Engines and Gas Turbines", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC307.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-G10"], + ["Wednesday", "06:00-06:50", "LC-II-G10"], + ["Friday", "06:00-06:50", "LC-II-G10"], + ], + semester: "WS", + }, + { + id: 546, + code: "MEC308", + name: "Computer Aided Manufacturing Lab", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC308.pdf", + credits: "0-0-3", + timetable: [ + ["Friday", "11:00-11:50", " "], + ["Friday", "09:00-09:50", " "], + ], + semester: "WS", + }, + { + id: 547, + code: "MEC309", + name: "Heat Power and Refrigeration Lab", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC309.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "09:00-09:50", " "], + ["Thursday", "12:00-12:50", " "], + ], + semester: "WS", + }, + { + id: 548, + code: "MED519", + name: "Engineering Tribology", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED519.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "NAC Hall"], + ["Wednesday", "03:00-03:50", "NAC Hall"], + ["Thursday", "03:00-03:50", "NAC Hall"], + ], + semester: "WS", + }, + { + id: 549, + code: "MEO302", + name: "Refrigeration and Air-conditioning", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO302.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "MME-207"], + ["Wednesday", "04:00-04:50", "MME-207"], + ["Friday", "04:00-04:50", "MME-207"], + ], + semester: "WS", + }, + { + id: 550, + code: "MEO586", + name: "Additive Manufacturing", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO586.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "Mech G2"], + ["Thursday", "02:00-02:50", "Mech G2"], + ["Friday", "03:00-03:50", "Mech G2"], + ], + semester: "WS", + }, + { + id: 551, + code: "MED545", + name: "Turbomachinery", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED545.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 552, + code: "MEO581", + name: "Fundamentals of Combustion", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO581.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "Mech G1"], + ["Wednesday", "03:00-03:50", "Mech G1"], + ["Thursday", "03:00-03:50", "Mech G1"], + ], + semester: "WS", + }, + { + id: 553, + code: "MEO590", + name: "Advanced Scientific Computing", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO590.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-C15"], + ["Thursday", "02:00-02:50", "LC-II-C15"], + ["Friday", "03:00-03:50", "LC-II-C15"], + ], + semester: "WS", + }, + { + id: 554, + code: "MMC305", + name: "Underground Mining Equipment", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC305.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C4"], + ["Wednesday", "02:00-02:50", "LC-II-C4"], + ["Friday", "02:00-02:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 555, + code: "MMC306", + name: "Opencast Mining Equipment", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC306.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-C4"], + ["Wednesday", "06:00-06:50", "LC-II-C4"], + ["Friday", "06:00-06:50", "LC-II-C4"], + ], + semester: "WS", + }, + { + id: 556, + code: "MMC307", + name: "Mining Machinery Lab", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC307.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "11:00-11:50", "MH- LAB"], + ["Tuesday", "10:00-10:50", "MH- LAB"], + ], + semester: "WS", + }, + { + id: 557, + code: "MMC308", + name: "Pumps Fans & Compressors Lab", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMC308.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "PFC LAB"], + ["Thursday", "10:00-10:50", "PFC LAB"], + ], + semester: "WS", + }, + { + id: 558, + code: "PEC306", + name: "Directional Drilling", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC306.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "PET 2"], + ["Wednesday", "02:00-02:50", "PET 2"], + ["Friday", "02:00-02:50", "PET 2"], + ], + semester: "WS", + }, + { + id: 559, + code: "PEC307", + name: "Oil and Gas Well Testing", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC307.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "PET 1"], + ["Wednesday", "06:00-06:50", "PET 1"], + ["Friday", "06:00-06:50", "PET 1"], + ], + semester: "WS", + }, + { + id: 560, + code: "PEC308", + name: "Enhanced Oil Recovery Practical", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC308.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 561, + code: "PEC309", + name: "Reservoir Characterization Practical", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC309.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 562, + code: "PEO301", + name: "Heat and Mass Transfer in Petroleum Operations", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "PET 1"], + ["Wednesday", "04:00-04:50", "PET 1"], + ["Friday", "04:00-04:50", "PET 1"], + ], + semester: "WS", + }, + { + id: 563, + code: "PEO302", + name: "Oil & Gas Field Development and Planning", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO302.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "PET 1"], + ["Wednesday", "03:00-03:50", "PET 1"], + ["Thursday", "03:00-03:50", "PET 1"], + ], + semester: "WS", + }, + { + id: 564, + code: "PEO502", + name: "Flow Assurance", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO502.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "PET 1"], + ["Thursday", "02:00-02:50", "PET 1"], + ["Friday", "03:00-03:50", "PET 1"], + ], + semester: "WS", + }, + { + id: 565, + code: "PHC302", + name: "Solid State Physics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC302.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "06:00-06:50", " "], + ["Friday", "06:00-06:50", " "], + ], + semester: "WS", + }, + { + id: 566, + code: "PHC303", + name: "Applied Optics Lab", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC303.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "11:00-11:50", "PHUG LAB-2"], + ["Tuesday", "10:00-10:50", "PHUG LAB-2"], + ], + semester: "WS", + }, + { + id: 567, + code: "PHC304", + name: "Spectroscopy Lab", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC304.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "PHUG LAB-2"], + ["Thursday", "10:00-10:50", "PHUG LAB-2"], + ], + semester: "WS", + }, + { + id: 568, + code: "PHC510", + name: "Atomic and Molecular Physics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC510.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "02:00-02:50", " "], + ["Wednesday", "02:00-02:50", " "], + ["Friday", "02:00-02:50", " "], + ], + semester: "WS", + }, + { + id: 569, + code: "PHO401", + name: "Introduction to Quantum Devices", + instructor: "n/a", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO401.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-I-C9"], + ["Thursday", "02:00-02:50", "LC-I-C9"], + ["Friday", "03:00-03:50", "LC-I-C9"], + ], + semester: "WS", + }, + { + id: 570, + code: "PHO403", + name: "Energy Storage Technologies", + instructor: "n/a", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO403.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 571, + code: "CHD404", + name: "Bioprocess Technology", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD404.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "CHE-401"], + ["Thursday", "12:00-12:50", "CHE-401"], + ["Friday", "10:00-10:50", "CHE-401"], + ], + semester: "WS", + }, + { + id: 572, + code: "CHD411", + name: "Catalytic Reaction Engineering", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD411.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "CHE-401"], + ["Wednesday", "12:00-12:50", "CHE-401"], + ["Friday", "12:00-12:50", "CHE-401"], + ], + semester: "WS", + }, + { + id: 573, + code: "CHD417", + name: "Membrane Science and Engineering", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD417.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 574, + code: "CHO403", + name: "Process Intensification", + instructor: "n/a", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO403.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "CHE-401"], + ["Wednesday", "08:00-08:50", "CHE-401"], + ["Friday", "08:00-08:50", "CHE-401"], + ], + semester: "WS", + }, + { + id: 575, + code: "CSD401", + name: "Advanced Algorithms", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD401.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G14"], + ["Wednesday", "12:00-12:50", "LC-II-G14"], + ["Friday", "12:00-12:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 576, + code: "CSD403", + name: "Combinatorics and Graph Theory", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD403.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 577, + code: "CSD404", + name: "Computer Graphics", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD404.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "CSE CR1"], + ["Wednesday", "08:00-08:50", "CSE CR1"], + ["Friday", "08:00-08:50", "CSE CR1"], + ], + semester: "WS", + }, + { + id: 578, + code: "CSD405", + name: "Evolutionary Computation", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD405.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", " "], + ["Wednesday", "12:00-12:50", " "], + ["Friday", "12:00-12:50", " "], + ], + semester: "WS", + }, + { + id: 579, + code: "CSD508", + name: "Distributed Systems", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD508.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "CSE CR1"], + ["Thursday", "12:00-12:50", "CSE CR1"], + ["Friday", "10:00-10:50", "CSE CR1"], + ], + semester: "WS", + }, + { + id: 580, + code: "CSD510", + name: "Information Retrieval", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD510.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "LC-II-G14"], + ["Thursday", "12:00-12:50", "LC-II-G14"], + ["Friday", "10:00-10:50", "LC-II-G14"], + ], + semester: "WS", + }, + { + id: 581, + code: "CSD521", + name: "Wireless Networks", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD521.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 582, + code: "CSO505", + name: "Soft Computing", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO505.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "08:00-08:50", "LC-II-G9"], + ["Thursday", "08:00-08:50", "LC-II-G9"], + ["Friday", "09:00-09:50", "LC-II-G9"], + ], + semester: "WS", + }, + { + id: 583, + code: "CED404", + name: "Environmental Engineering - II", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED404.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "CECR3"], + ["Thursday", "12:00-12:50", "CECR3"], + ["Friday", "10:00-10:50", "CECR3"], + ], + semester: "WS", + }, + { + id: 584, + code: "CED529", + name: "Advanced Foundation Engineering", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED529.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "CECR2"], + ["Wednesday", "08:00-08:50", "CECR2"], + ["Friday", "08:00-08:50", "CECR2"], + ], + semester: "WS", + }, + { + id: 585, + code: "CED542", + name: "Prestressed Concrete Structures", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED542.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "CECR1"], + ["Wednesday", "12:00-12:50", "CECR1"], + ["Friday", "12:00-12:50", "CECR1"], + ], + semester: "WS", + }, + { + id: 586, + code: "CEO526", + name: "Geoinformatics for Civil Engineering", + instructor: "n/a", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO526.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "08:00-08:50", "CECR3"], + ["Thursday", "08:00-08:50", "CECR3"], + ["Friday", "09:00-09:50", "CECR3"], + ], + semester: "WS", + }, + { + id: 587, + code: "ECD404", + name: "Digital Image Processing", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD404.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "LC-II-C1"], + ["Thursday", "12:00-12:50", "LC-II-C1"], + ["Friday", "10:00-10:50", "LC-II-C1"], + ], + semester: "WS", + }, + { + id: 588, + code: "ECD419", + name: "Satellite Communication", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD419.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-I-C4"], + ["Wednesday", "12:00-12:50", "LC-I-C4"], + ["Friday", "12:00-12:50", "LC-I-C4"], + ], + semester: "WS", + }, + { + id: 589, + code: "ECO500", + name: "Wireless Sensor Networks", + instructor: "n/a", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO500.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 590, + code: "ECO506", + name: "Machine Learning", + instructor: "n/a", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO506.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 591, + code: "EED405", + name: "Instrumentation", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED405.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-C3"], + ["Wednesday", "12:00-12:50", "LC-II-C3"], + ["Friday", "12:00-12:50", "LC-II-C3"], + ], + semester: "WS", + }, + { + id: 592, + code: "EED406", + name: "Special Purpose Electric Machines and Drives", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED406.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "LC-II-G16"], + ["Thursday", "12:00-12:50", "LC-II-G16"], + ["Friday", "10:00-10:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 593, + code: "EED511", + name: "Power System Dynamics", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED511.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "LC-II-C3"], + ["Thursday", "12:00-12:50", "LC-II-C3"], + ["Friday", "10:00-10:50", "LC-II-C3"], + ], + semester: "WS", + }, + { + id: 594, + code: "EED513", + name: "Power Quality", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED513.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G16"], + ["Wednesday", "12:00-12:50", "LC-II-G16"], + ["Friday", "12:00-12:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 595, + code: "EEO504", + name: "Condition Monitoring of Electrical Machines", + instructor: "n/a", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-C3"], + ["Wednesday", "08:00-08:50", "LC-II-C3"], + ["Friday", "08:00-08:50", "LC-II-C3"], + ], + semester: "WS", + }, + { + id: 596, + code: "EEO505", + name: "Modern Sensors and Signal Conditioning Circuits", + instructor: "n/a", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO505.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "08:00-08:50", "LC-II-C3"], + ["Thursday", "08:00-08:50", "LC-II-C3"], + ["Friday", "09:00-09:50", "LC-II-C3"], + ], + semester: "WS", + }, + { + id: 597, + code: "ESD402", + name: "Industrial Waste Water Engineering", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD402.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "MS 011"], + ["Wednesday", "12:00-12:50", "MS 011"], + ["Friday", "12:00-12:50", "MS 011"], + ], + semester: "WS", + }, + { + id: 598, + code: "ESD406", + name: "Environmental Nano Technology", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD406.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "LC-II-C15"], + ["Thursday", "12:00-12:50", "LC-II-C15"], + ["Friday", "10:00-10:50", "LC-II-C15"], + ], + semester: "WS", + }, + { + id: 599, + code: "ESD503", + name: "Environmental Modelling", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD503.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 600, + code: "ESO505", + name: "Climate Change and Modelling", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESO505.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "08:00-08:50", "LC-II-C20"], + ["Thursday", "08:00-08:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 601, + code: "FMD462", + name: "Process Control and Plant Layout", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD462.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "FME-1"], + ["Wednesday", "12:00-12:50", "FME-1"], + ["Friday", "12:00-12:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 602, + code: "FMD522", + name: "Coal Preparation", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD522.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "FME-2"], + ["Wednesday", "08:00-08:50", "FME-2"], + ["Friday", "08:00-08:50", "FME-2"], + ], + semester: "WS", + }, + { + id: 603, + code: "FMD530", + name: "Biofuels", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD530.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 604, + code: "FMD536", + name: "Surface Engineering", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD536.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "FME-1"], + ["Thursday", "12:00-12:50", "FME-1"], + ["Friday", "10:00-10:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 605, + code: "MND407", + name: "Underground Space Technology", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND407.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 606, + code: "MND408", + name: "Innovative Mining Systems", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND408.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "MIN-1"], + ["Wednesday", "08:00-08:50", "MIN-1"], + ["Friday", "08:00-08:50", "MIN-1"], + ], + semester: "WS", + }, + { + id: 607, + code: "MND409", + name: "Introduction to Geographical Information System", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND409.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 608, + code: "MND410", + name: "Advanced Blasting Techniques", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND410.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "MIN-1"], + ["Wednesday", "12:00-12:50", "MIN-1"], + ["Friday", "12:00-12:50", "MIN-1"], + ], + semester: "WS", + }, + { + id: 609, + code: "MND411", + name: "Advanced Underground Mining Methods", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND411.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "MIN-1"], + ["Thursday", "12:00-12:50", "MIN-1"], + ["Friday", "10:00-10:50", "MIN-1"], + ], + semester: "WS", + }, + { + id: 610, + code: "MND412", + name: "Deep Coal Mining", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND412.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 611, + code: "MED529", + name: "Composite Materials", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED529.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-C14"], + ["Wednesday", "12:00-12:50", "LC-II-C14"], + ["Friday", "12:00-12:50", "LC-II-C14"], + ], + semester: "WS", + }, + { + id: 612, + code: "MED531", + name: "Fracture Mechanics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED531.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "MME-207"], + ["Thursday", "12:00-12:50", "MME-207"], + ["Friday", "10:00-10:50", "MME-207"], + ], + semester: "WS", + }, + { + id: 613, + code: "MEO522", + name: "Condition Monitoring of Machines", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO522.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "MME-207"], + ["Wednesday", "08:00-08:50", "MME-207"], + ["Friday", "08:00-08:50", "MME-207"], + ], + semester: "WS", + }, + { + id: 614, + code: "MEO528", + name: "Robotics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO528.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "08:00-08:50", "MME-207"], + ["Thursday", "08:00-08:50", "MME-207"], + ["Friday", "09:00-09:50", "MME-207"], + ], + semester: "WS", + }, + { + id: 615, + code: "MED521", + name: "Theory of Lubrication", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED521.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 616, + code: "MED541", + name: "Microfluidics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED541.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "Mech G1"], + ["Wednesday", "12:00-12:50", "Mech G1"], + ["Friday", "12:00-12:50", "Mech G1"], + ], + semester: "WS", + }, + { + id: 617, + code: "MED542", + name: "Finite Element Method in Thermal Engineering", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED542.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "Mech G2"], + ["Thursday", "12:00-12:50", "Mech G2"], + ["Friday", "10:00-10:50", "Mech G2"], + ], + semester: "WS", + }, + { + id: 618, + code: "MMO504", + name: "Advanced Fluid Power Systems and Control", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MMO504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "Mech G1"], + ["Wednesday", "08:00-08:50", "Mech G1"], + ["Friday", "08:00-08:50", "Mech G1"], + ], + semester: "WS", + }, + { + id: 619, + code: "PED404", + name: "Petroleum Engineering Design", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED404.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "PET 1"], + ["Wednesday", "12:00-12:50", "PET 1"], + ["Friday", "12:00-12:50", "PET 1"], + ], + semester: "WS", + }, + { + id: 620, + code: "PED405", + name: "Pipeline Engineering", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED405.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "PET 3"], + ["Wednesday", "12:00-12:50", "PET 3"], + ["Friday", "12:00-12:50", "PET 3"], + ], + semester: "WS", + }, + { + id: 621, + code: "PED406", + name: "Reservoir Modeling and Simulation", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED406.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "PET 3"], + ["Thursday", "12:00-12:50", "PET 3"], + ["Friday", "10:00-10:50", "PET 3"], + ], + semester: "WS", + }, + { + id: 622, + code: "PED502", + name: "Well Intervention, Workover and Stimulation Techniques", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED502.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "PET 1"], + ["Thursday", "12:00-12:50", "PET 1"], + ["Friday", "10:00-10:50", "PET 1"], + ], + semester: "WS", + }, + { + id: 623, + code: "PEO405", + name: "Integrated Reservoir Management", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO405.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "08:00-08:50", "PET 3"], + ["Thursday", "08:00-08:50", "PET 3"], + ["Friday", "09:00-09:50", "PET 3"], + ], + semester: "WS", + }, + { + id: 624, + code: "PEO506", + name: "Carbon Capture And Sequestration", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO506.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "PET 3"], + ["Wednesday", "08:00-08:50", "PET 3"], + ["Friday", "08:00-08:50", "PET 3"], + ], + semester: "WS", + }, + { + id: 625, + code: "PHD503", + name: "High Energy Physics", + instructor: "n/a", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD503.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-C5"], + ["Wednesday", "12:00-12:50", "LC-II-C5"], + ["Friday", "12:00-12:50", "LC-II-C5"], + ], + semester: "WS", + }, + { + id: 626, + code: "PHD511", + name: "Astrophysics and Cosmology", + instructor: "n/a", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD511.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 627, + code: "PHD512", + name: "Nonlinear Optics", + instructor: "n/a", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD512.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 628, + code: "PHD513", + name: "Semiconductor Physics and Technology", + instructor: "n/a", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD513.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 629, + code: "PHO303", + name: "Physics for Society", + instructor: "n/a", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO303.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 630, + code: "PHO503", + name: "Physics of Nanomaterials", + instructor: "n/a", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO503.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "MS 010"], + ["Wednesday", "08:00-08:50", "MS 010"], + ["Friday", "08:00-08:50", "MS 010"], + ], + semester: "WS", + }, + { + id: 631, + code: "GLC205", + name: "Introduction to Petrology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC205.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C6"], + ["Wednesday", "09:00-09:50", "LC-II-C6"], + ["Friday", "09:00-09:50", "LC-II-C6"], + ], + semester: "WS", + }, + { + id: 632, + code: "GLC206", + name: "Introduction to Stratigraphy and Paleontology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC206.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C6"], + ["Wednesday", "10:00-10:50", "LC-II-C6"], + ["Thursday", "11:00-11:50", "LC-II-C6"], + ], + semester: "WS", + }, + { + id: 633, + code: "GLC207", + name: "Descriptive Mineralogy", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C6"], + ["Tuesday", "09:00-09:50", "LC-II-C6"], + ["Thursday", "09:00-09:50", "LC-II-C6"], + ], + semester: "WS", + }, + { + id: 634, + code: "GLC208", + name: "Economic Geology and Indian Mineral Deposits", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC208.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-C12"], + ["Wednesday", "11:00-11:50", "LC-II-C12"], + ["Thursday", "10:00-10:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 635, + code: "GLC209", + name: "Petrology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC209.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "04:00-04:50", "Petrology Lab"], + ["Thursday", "05:00-05:50", "Petrology Lab"], + ], + semester: "WS", + }, + { + id: 636, + code: "GLC210", + name: "Economic Geology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC210.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-C6"], + ["Monday", "04:00-04:50", "LC-II-C6"], + ], + semester: "WS", + }, + { + id: 637, + code: "GLE202", + name: "Resource Geology", + instructor: "n/a", + department: "Applied Geology", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLE202.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 638, + code: "GPC205", + name: "Oceanography", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC205.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "Annexe 102"], + ["Tuesday", "09:00-09:50", "Annexe 102"], + ["Thursday", "09:00-09:50", "Annexe 102"], + ], + semester: "WS", + }, + { + id: 639, + code: "GPC206", + name: "Mathematical Geophysics", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC206.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "10:00-10:50", "Annexe 102"], + ["Wednesday", "10:00-10:50", "Annexe 102"], + ["Thursday", "11:00-11:50", "Annexe 102"], + ], + semester: "WS", + }, + { + id: 640, + code: "GPC207", + name: "Radiometric Method", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC207.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "Annexe 102"], + ["Wednesday", "09:00-09:50", "Annexe 102"], + ["Friday", "09:00-09:50", "Annexe 102"], + ], + semester: "WS", + }, + { + id: 641, + code: "GPC208", + name: "Radiometric Method Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC208.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "Annexe 102"], + ["Monday", "04:00-04:50", "Annexe 102"], + ], + semester: "WS", + }, + { + id: 642, + code: "GPE201", + name: "Earth and Planetary System", + instructor: "n/a", + department: "Applied Geophysics", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPE201.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-C12"], + ["Wednesday", "08:00-08:50", "LC-II-C12"], + ["Friday", "08:00-08:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 643, + code: "MCC205", + name: "Linear Algebra", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC205.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "10:00-10:50", "LC-II-G7"], + ["Wednesday", "11:00-11:50", "LC-II-G7"], + ["Thursday", "10:00-10:50", "LC-II-G7"], + ], + semester: "WS", + }, + { + id: 644, + code: "MCC509", + name: "Statistical Inference", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC509.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-G4"], + ["Wednesday", "09:00-09:50", "LC-II-G4"], + ["Friday", "09:00-09:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 645, + code: "MCC510", + name: "Operating Systems", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G4"], + ["Wednesday", "10:00-10:50", "LC-II-G4"], + ["Thursday", "11:00-11:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 646, + code: "MCC512", + name: "Operating Systems Practical", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC512.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "05:00-05:50", "UG Lab-1"], + ["Monday", "04:00-04:50", "UG Lab-1"], + ], + semester: "WS", + }, + { + id: 647, + code: "MCE301", + name: "Operations Research", + instructor: "n/a", + department: "Mathematics and Computing", + type: "ESO", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCE301.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-G7"], + ["Wednesday", "08:00-08:50", "LC-II-G7"], + ["Friday", "08:00-08:50", "LC-II-G7"], + ], + semester: "WS", + }, + { + id: 648, + code: "MCO501", + name: "Discrete Mathematics", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCO501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G7"], + ["Tuesday", "09:00-09:50", "LC-II-G7"], + ["Thursday", "09:00-09:50", "LC-II-G7"], + ], + semester: "WS", + }, + { + id: 649, + code: "GLC509", + name: "Igneous Petrology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC509.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "AGL-3"], + ["Wednesday", "02:00-02:50", "AGL-3"], + ["Friday", "02:00-02:50", "AGL-3"], + ], + semester: "WS", + }, + { + id: 650, + code: "GLC510", + name: "Metamorphic Petrology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "AGL-3"], + ["Wednesday", "06:00-06:50", "AGL-3"], + ["Friday", "06:00-06:50", "AGL-3"], + ], + semester: "WS", + }, + { + id: 651, + code: "GLC514", + name: "Igneous and Metamorphic Petrology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC514.pdf", + credits: "0-0-3", + timetable: [ + ["Tuesday", "11:00-11:50", "Petrology Lab"], + ["Tuesday", "10:00-10:50", "Petrology Lab"], + ], + semester: "WS", + }, + { + id: 652, + code: "GLC515", + name: "Sedimentology and Petroleum Geology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC515.pdf", + credits: "0-0-3", + timetable: [], + semester: "WS", + }, + { + id: 653, + code: "GLD530", + name: "Geodynamics", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD530.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-C11"], + ["Wednesday", "04:00-04:50", "LC-II-C11"], + ["Friday", "04:00-04:50", "LC-II-C11"], + ], + semester: "WS", + }, + { + id: 654, + code: "GLD540", + name: "Geomorphology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD540.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "AGL-1"], + ["Wednesday", "03:00-03:50", "AGL-1"], + ["Thursday", "03:00-03:50", "AGL-1"], + ], + semester: "WS", + }, + { + id: 655, + code: "GPC508", + name: "Earthquake Seismology", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C12"], + ["Wednesday", "03:00-03:50", "LC-II-C12"], + ["Thursday", "03:00-03:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 656, + code: "GPC509", + name: "Geoelectrical Method", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC509.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-C12"], + ["Wednesday", "04:00-04:50", "LC-II-C12"], + ["Friday", "04:00-04:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 657, + code: "GPC510", + name: "Well Logging", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C12"], + ["Wednesday", "09:00-09:50", "LC-II-C12"], + ["Friday", "09:00-09:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 658, + code: "GPC511", + name: "Seismic Data Acquisition", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC511.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C12"], + ["Wednesday", "02:00-02:50", "LC-II-C12"], + ["Friday", "02:00-02:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 659, + code: "GPC512", + name: "Seismic Data Acquisition Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC512.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 660, + code: "GPC513", + name: "Geoelectrical Methods Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC513.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 661, + code: "GPC515", + name: "Earthquake Seismology and Well Logging Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC515.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 662, + code: "GPO503", + name: "Artificial Intelligence and Machine Learning in Geosciences", + instructor: "n/a", + department: "Applied Geophysics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPO503.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-C12"], + ["Thursday", "02:00-02:50", "LC-II-C12"], + ["Friday", "03:00-03:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 663, + code: "MCC511", + name: "Database Management Systems", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC511.pdf", + credits: "3-0-0", + timetable: [["Tuesday", "09:00-09:50", " "]], + semester: "WS", + }, + { + id: 664, + code: "MCC513", + name: "Database Management Systems Practical", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC513.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 665, + code: "MCD501", + name: "Classical Mechanics", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD501.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 666, + code: "MCD508", + name: "Theory of Computation", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-G16"], + ["Wednesday", "06:00-06:50", "LC-II-G16"], + ["Friday", "06:00-06:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 667, + code: "MCD511", + name: "Mathematical Ecology", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD511.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G16"], + ["Wednesday", "03:00-03:50", "LC-II-G16"], + ["Thursday", "03:00-03:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 668, + code: "MCD560", + name: "Orbital Mechanics", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD560.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "Seminar Hall-1"], + ["Wednesday", "04:00-04:50", "Seminar Hall-1"], + ["Friday", "04:00-04:50", "Seminar Hall-1"], + ], + semester: "WS", + }, + { + id: 669, + code: "GLC513", + name: "Coal Geology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC513.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 670, + code: "GLC516", + name: "Coal Geology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC516.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 671, + code: "GLC526", + name: "Ore Geology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC526.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-C7"], + ["Wednesday", "12:00-12:50", "LC-II-C7"], + ["Friday", "11:00-11:50", "LC-II-C7"], + ], + semester: "WS", + }, + { + id: 672, + code: "GLC533", + name: "Ore Geology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC533.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "03:00-03:50", "Ore Geology Lab"], + ["Monday", "02:00-02:50", "Ore Geology Lab"], + ], + semester: "WS", + }, + { + id: 673, + code: "GLD528", + name: "Geotechnical Engineering", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD528.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-C7"], + ["Thursday", "12:00-12:50", "LC-II-C7"], + ["Friday", "12:00-12:50", "LC-II-C7"], + ], + semester: "WS", + }, + { + id: 674, + code: "GLD571", + name: "Petroleum Exploration and Micropalaeontology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD571.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "AGL-3"], + ["Wednesday", "08:00-08:50", "AGL-3"], + ["Friday", "08:00-08:50", "AGL-3"], + ], + semester: "WS", + }, + { + id: 675, + code: "GLO545", + name: "Radiogenic and Stable Isotope Geology", + instructor: "n/a", + department: "Applied Geology", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLO545.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "08:00-08:50", "AGL-3"], + ["Thursday", "08:00-08:50", "AGL-3"], + ["Friday", "09:00-09:50", "AGL-3"], + ], + semester: "WS", + }, + { + id: 676, + code: "GPC520", + name: "Magnetic Method", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC520.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C13"], + ["Wednesday", "10:00-10:50", "LC-II-C13"], + ["Thursday", "11:00-11:50", "LC-II-C13"], + ], + semester: "WS", + }, + { + id: 677, + code: "GPC521", + name: "Geoelectromagnetic Method", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC521.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-C13"], + ["Wednesday", "12:00-12:50", "LC-II-C13"], + ["Friday", "11:00-11:50", "LC-II-C13"], + ], + semester: "WS", + }, + { + id: 678, + code: "GPC522", + name: "Magnetic Method Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC522.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 679, + code: "GPC523", + name: "Geoelectromagnetic Method Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC523.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 680, + code: "GPD507", + name: "Geophysics for Mineral Exploration", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD507.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-C13"], + ["Thursday", "12:00-12:50", "LC-II-C13"], + ["Friday", "12:00-12:50", "LC-II-C13"], + ], + semester: "WS", + }, + { + id: 681, + code: "GPD508", + name: "Seismological Data Analysis", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "08:00-08:50", "LC-II-C13"], + ["Wednesday", "08:00-08:50", "LC-II-C13"], + ["Friday", "08:00-08:50", "LC-II-C13"], + ], + semester: "WS", + }, + { + id: 682, + code: "MCC401", + name: "Software Engineering", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC401.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G7"], + ["Wednesday", "12:00-12:50", "LC-II-G7"], + ["Friday", "11:00-11:50", "LC-II-G7"], + ], + semester: "WS", + }, + { + id: 683, + code: "MCC402", + name: "Software Engineering Practical", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC402.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "03:00-03:50", "UG Lab-2"], + ["Monday", "02:00-02:50", "UG Lab-2"], + ], + semester: "WS", + }, + { + id: 684, + code: "MCD502", + name: "Graph Theory", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD502.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-G7"], + ["Thursday", "12:00-12:50", "LC-II-G7"], + ["Friday", "12:00-12:50", "LC-II-G7"], + ], + semester: "WS", + }, + { + id: 685, + code: "MCD510", + name: "Complex Analysis", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-G7"], + ["Wednesday", "10:00-10:50", "LC-II-G7"], + ["Thursday", "11:00-11:50", "LC-II-G7"], + ], + semester: "WS", + }, + { + id: 686, + code: "MCD516", + name: "Industrial Statistics", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD516.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 687, + code: "MCO402", + name: "Modelling and Simulation", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCO402.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 688, + code: "", + name: "", + instructor: "n/a", + department: "Applied Geophysics", + type: "", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 689, + code: "GPC537", + name: "Remote Sensing: Principles and Data Acquisition System", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC537.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 690, + code: "GPC538", + name: "Advanced Numerical Methods", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC538.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 691, + code: "GPC539", + name: "Remote Sensing: Principles and Data Acquisition System Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC539.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", " "], + ["Monday", "10:00-10:50", " "], + ], + semester: "WS", + }, + { + id: 692, + code: "GPC540", + name: "Advanced Numerical Methods Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC540.pdf", + credits: "0-0-3", + timetable: [ + ["Wednesday", "11:00-11:50", " "], + ["Wednesday", "10:00-10:50", " "], + ], + semester: "WS", + }, + { + id: 693, + code: "GPD520", + name: "Earthquake Statistics and Hazard", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD520.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 694, + code: "CHC530", + name: "Reaction Engineering", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CHC530.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "LC-II-C13"], + ["Wednesday", "05:00-05:50", "LC-II-C13"], + ["Friday", "05:00-05:50", "LC-II-C13"], + ], + semester: "WS", + }, + { + id: 695, + code: "CHC531", + name: "Chemical Engineering Lab", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CHC531.pdf", + credits: "0-0-3", + timetable: [], + semester: "WS", + }, + { + id: 696, + code: "CYC529", + name: "Formulation/Manufacturing Lab", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC529.pdf", + credits: "0-0-3", + timetable: [ + ["Wednesday", "11:00-11:50", "PG Lab"], + ["Wednesday", "10:00-10:50", "PG Lab"], + ], + semester: "WS", + }, + { + id: 697, + code: "CYD524", + name: "Basics of Chemical Biology", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD524.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 698, + code: "CYD529", + name: "Computer Aided Drug Discovery", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD529.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 699, + code: "CYD530", + name: "Pharmacovigilance and Regulatory Affairs", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD530.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 700, + code: "CYD531", + name: "Biotechnology in Pharmaceutical Sciences", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD531.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 701, + code: "CHC508", + name: "Advanced Mass transfer", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "CHE-402"], + ["Wednesday", "02:00-02:50", "CHE-402"], + ["Friday", "02:00-02:50", "CHE-402"], + ], + semester: "WS", + }, + { + id: 702, + code: "CHC509", + name: "Computational Fluid Dynamics", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC509.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "CHE-402"], + ["Thursday", "03:00-03:50", "CHE-402"], + ["Friday", "03:00-03:50", "CHE-402"], + ], + semester: "WS", + }, + { + id: 703, + code: "CHC510", + name: "Advanced Chemical Engineering Lab", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC510.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", "CHE 426"], + ["Monday", "10:00-10:50", "CHE 426"], + ], + semester: "WS", + }, + { + id: 704, + code: "CHC511", + name: "Term Paper and Presentation", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC511.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "CHE-423"], + ["Wednesday", "10:00-10:50", "CHE-423"], + ], + semester: "WS", + }, + { + id: 705, + code: "CHD504", + name: "Process Optimization", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "CHE-434"], + ["Wednesday", "03:00-03:50", "CHE-434"], + ["Thursday", "04:00-04:50", "CHE-434"], + ], + semester: "WS", + }, + { + id: 706, + code: "CHD505", + name: "Interfacial and Colloidal Phenomena", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD505.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 707, + code: "CHO501", + name: "Rheology", + instructor: "n/a", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO501.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "CHE-402"], + ["Wednesday", "04:00-04:50", "CHE-402"], + ["Friday", "04:00-04:50", "CHE-402"], + ], + semester: "WS", + }, + { + id: 708, + code: "CHO503", + name: "Introduction to Granular Mechanics", + instructor: "n/a", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO503.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 709, + code: "CSC508", + name: "Computing Lab - I", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC508.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "11:00-11:50", "CSE LAB -IV"], + ["Monday", "10:00-10:50", "CSE LAB -IV"], + ], + semester: "WS", + }, + { + id: 710, + code: "CSC509", + name: "Computing Lab - II", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC509.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "CSE LAB -IV"], + ["Wednesday", "10:00-10:50", "CSE LAB -IV"], + ], + semester: "WS", + }, + { + id: 711, + code: "CSD505", + name: "Cryptography and Network Security", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD505.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "CSE CR2"], + ["Wednesday", "02:00-02:50", "CSE CR2"], + ["Friday", "02:00-02:50", "CSE CR2"], + ], + semester: "WS", + }, + { + id: 712, + code: "CSD509", + name: "Image and Video Processing", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD509.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "CSE CR1"], + ["Wednesday", "02:00-02:50", "CSE CR1"], + ["Friday", "02:00-02:50", "CSE CR1"], + ], + semester: "WS", + }, + { + id: 713, + code: "CSD513", + name: "Internet of Things", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD513.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "CSE CR1"], + ["Wednesday", "03:00-03:50", "CSE CR1"], + ["Thursday", "04:00-04:50", "CSE CR1"], + ], + semester: "WS", + }, + { + id: 714, + code: "CSD516", + name: "Optimization Techniques", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD516.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "CSE CR2"], + ["Thursday", "03:00-03:50", "CSE CR2"], + ["Friday", "03:00-03:50", "CSE CR2"], + ], + semester: "WS", + }, + { + id: 715, + code: "CSD517", + name: "Parallel Computing", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD517.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 716, + code: "CSO501", + name: "Principles of Artificial Intelligence", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "CSE CR1"], + ["Tuesday", "03:00-03:50", "CSE CR1"], + ["Thursday", "05:00-05:50", "CSE CR1"], + ], + semester: "WS", + }, + { + id: 717, + code: "CSO503", + name: "Data Mining", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO503.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "NAC Hall"], + ["Wednesday", "04:00-04:50", "NAC Hall"], + ["Friday", "04:00-04:50", "NAC Hall"], + ], + semester: "WS", + }, + { + id: 718, + code: "CSO507", + name: "Deep Learning", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO507.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "CSE CR1"], + ["Wednesday", "04:00-04:50", "CSE CR1"], + ["Friday", "04:00-04:50", "CSE CR1"], + ], + semester: "WS", + }, + { + id: 719, + code: "CSO508", + name: "Building Software Systems", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO508.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 720, + code: "CEC509", + name: "Advanced Testing Laboratory", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC509.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", "CEPG1"], + ["Monday", "10:00-10:50", "CEPG1"], + ], + semester: "WS", + }, + { + id: 721, + code: "CEC510", + name: "Term Project", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC510.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "CEPG2"], + ["Wednesday", "10:00-10:50", "CEPG2"], + ], + semester: "WS", + }, + { + id: 722, + code: "CED528", + name: "Structural Dynamics", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED528.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "CECR1"], + ["Wednesday", "02:00-02:50", "CECR1"], + ["Friday", "02:00-02:50", "CECR1"], + ], + semester: "WS", + }, + { + id: 723, + code: "CED530", + name: "Hydrogeology and Well Hydraulics", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED530.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C1"], + ["Wednesday", "02:00-02:50", "LC-II-C1"], + ["Friday", "02:00-02:50", "LC-II-C1"], + ], + semester: "WS", + }, + { + id: 724, + code: "CED532", + name: "Slope and Retaining Structure", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED532.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "CECR2"], + ["Wednesday", "03:00-03:50", "CECR2"], + ["Thursday", "04:00-04:50", "CECR2"], + ], + semester: "WS", + }, + { + id: 725, + code: "CED533", + name: "Hydroclimatology", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED533.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "CECR3"], + ["Thursday", "03:00-03:50", "CECR3"], + ["Friday", "03:00-03:50", "CECR3"], + ], + semester: "WS", + }, + { + id: 726, + code: "CED534", + name: "Theory of Elastic Stability", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED534.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "CECR1"], + ["Thursday", "03:00-03:50", "CECR1"], + ["Friday", "03:00-03:50", "CECR1"], + ], + semester: "WS", + }, + { + id: 727, + code: "CED535", + name: "Soil Dynamics", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED535.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "CECR2"], + ["Thursday", "03:00-03:50", "CECR2"], + ["Friday", "03:00-03:50", "CECR2"], + ], + semester: "WS", + }, + { + id: 728, + code: "CED537", + name: "Earthquake Engineering", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CED537.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 729, + code: "CEO524", + name: "Finite Element Method", + instructor: "n/a", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO524.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "CECR3"], + ["Tuesday", "03:00-03:50", "CECR3"], + ["Thursday", "05:00-05:50", "CECR3"], + ], + semester: "WS", + }, + { + id: 730, + code: "CEO531", + name: "Railway Geotechnics", + instructor: "n/a", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO531.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "CECR3"], + ["Wednesday", "04:00-04:50", "CECR3"], + ["Friday", "04:00-04:50", "CECR3"], + ], + semester: "WS", + }, + { + id: 731, + code: "ECC507", + name: "Electronics Engineering - I Lab", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC507.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "10:00-10:50", "Computer Simulation Lab (637)"], + ["Monday", "11:00-11:50", "Computer Simulation Lab (637)"], + ], + semester: "WS", + }, + { + id: 732, + code: "ECC508", + name: "Electronics Engineering - II Lab", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC508.pdf", + credits: "0-0-3", + timetable: [ + ["Wednesday", "11:00-11:50", "Digital Signal Processing Lab (216)"], + ["Wednesday", "10:00-10:50", "Digital Signal Processing Lab (216)"], + ], + semester: "WS", + }, + { + id: 733, + code: "ECD500", + name: "Advanced Signal Processing", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD500.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-I-C4"], + ["Thursday", "03:00-03:50", "LC-I-C4"], + ["Friday", "03:00-03:50", "LC-I-C4"], + ], + semester: "WS", + }, + { + id: 734, + code: "ECD501", + name: "Metamaterials and CRLH Transmission Lines", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD501.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 735, + code: "ECD503", + name: "Wireless Communication Systems", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD503.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-C16"], + ["Wednesday", "03:00-03:50", "LC-II-C16"], + ["Thursday", "04:00-04:50", "LC-II-C16"], + ], + semester: "WS", + }, + { + id: 736, + code: "ECD504", + name: "Computer Communication Networks", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G13"], + ["Wednesday", "02:00-02:50", "LC-II-G13"], + ["Friday", "02:00-02:50", "LC-II-G13"], + ], + semester: "WS", + }, + { + id: 737, + code: "ECD505", + name: "CAD for VLSI", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD505.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-C16"], + ["Thursday", "03:00-03:50", "LC-II-C16"], + ["Friday", "03:00-03:50", "LC-II-C16"], + ], + semester: "WS", + }, + { + id: 738, + code: "ECD514", + name: "Photonic Sensors", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD514.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-I-C7"], + ["Thursday", "03:00-03:50", "LC-I-C7"], + ["Friday", "03:00-03:50", "LC-I-C7"], + ], + semester: "WS", + }, + { + id: 739, + code: "ECD520", + name: "Optoelectronic and Photonics Devices", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD520.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-I-C4"], + ["Wednesday", "03:00-03:50", "LC-I-C4"], + ["Thursday", "04:00-04:50", "LC-I-C4"], + ], + semester: "WS", + }, + { + id: 740, + code: "ECD531", + name: "Photonic Integrated Circuits", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD531.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 741, + code: "ECD540", + name: "Advanced Antenna Theory", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD540.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 742, + code: "ECD541", + name: "Microwave Measurements", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD541.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-I-C7"], + ["Wednesday", "03:00-03:50", "LC-I-C7"], + ["Thursday", "04:00-04:50", "LC-I-C7"], + ], + semester: "WS", + }, + { + id: 743, + code: "ECD560", + name: "Analog IC Design", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD560.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 744, + code: "ECD569", + name: "MOS Device Physics and Modelling", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD569.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 745, + code: "ECO520", + name: "Optical Networks", + instructor: "n/a", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO520.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-C16"], + ["Tuesday", "03:00-03:50", "LC-II-C16"], + ["Thursday", "05:00-05:50", "LC-II-C16"], + ], + semester: "WS", + }, + { + id: 746, + code: "ECO560", + name: "Test and Verification of VLSI Circuits", + instructor: "n/a", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO560.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-C16"], + ["Wednesday", "04:00-04:50", "LC-II-C16"], + ["Friday", "04:00-04:50", "LC-II-C16"], + ], + semester: "WS", + }, + { + id: 747, + code: "EEC501", + name: "Power System Analysis", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC501.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-C2"], + ["Thursday", "03:00-03:50", "LC-II-C2"], + ["Friday", "03:00-03:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 748, + code: "EEC508", + name: "Power Electronic Converters", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C2"], + ["Wednesday", "02:00-02:50", "LC-II-C2"], + ["Friday", "02:00-02:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 749, + code: "EEC513", + name: "Advanced power System Simulation Lab", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC513.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", "PS Lab"], + ["Monday", "10:00-10:50", "PS Lab"], + ], + semester: "WS", + }, + { + id: 750, + code: "EEC514", + name: "Advanced Power System Protection Lab", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC514.pdf", + credits: "0-0-3", + timetable: [ + ["Wednesday", "11:00-11:50", "Prot. Lab"], + ["Wednesday", "10:00-10:50", "Prot. Lab"], + ], + semester: "WS", + }, + { + id: 751, + code: "EED504", + name: "Wireless Power Transfer", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-C2"], + ["Wednesday", "03:00-03:50", "LC-II-C2"], + ["Thursday", "04:00-04:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 752, + code: "EEO501", + name: "Smart Grid Technology", + instructor: "n/a", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-C2"], + ["Tuesday", "03:00-03:50", "LC-II-C2"], + ["Thursday", "05:00-05:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 753, + code: "EEO503", + name: "Electric & Hybrid Electric Vehicles", + instructor: "n/a", + department: "Electrical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEO503.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-C2"], + ["Wednesday", "04:00-04:50", "LC-II-C2"], + ["Friday", "04:00-04:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 754, + code: "ESC506", + name: "Environmental Laws and Impact Assessment", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC506.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C20"], + ["Wednesday", "02:00-02:50", "LC-II-C20"], + ["Friday", "02:00-02:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 755, + code: "ESC507", + name: "Municipal Solid Waste Management", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC507.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-C20"], + ["Thursday", "03:00-03:50", "LC-II-C20"], + ["Friday", "03:00-03:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 756, + code: "ESC523", + name: "Water and Wastewater Engineering Practical", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC523.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", "Wastewater Lab"], + ["Monday", "10:00-10:50", "Wastewater Lab"], + ], + semester: "WS", + }, + { + id: 757, + code: "ESC524", + name: "Soil and Microbiology Practical", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC524.pdf", + credits: "0-0-3", + timetable: [ + ["Wednesday", "11:00-11:50", "Microbiology Lab "], + ["Wednesday", "10:00-10:50", "Microbiology Lab "], + ], + semester: "WS", + }, + { + id: 758, + code: "ESD505", + name: "Advanced Water and Wastewater Treatment", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD505.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "MS 011"], + ["Wednesday", "03:00-03:50", "MS 011"], + ["Thursday", "04:00-04:50", "MS 011"], + ], + semester: "WS", + }, + { + id: 759, + code: "ESD512", + name: "Groundwater Contaminant Transport", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD512.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 760, + code: "ESO501", + name: "Environmental Management System and Auditing", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESO501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-C20"], + ["Tuesday", "03:00-03:50", "LC-II-C20"], + ["Thursday", "05:00-05:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 761, + code: "ESO502", + name: "Environmental Aspects of Industries", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESO502.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "LC-II-C20"], + ["Wednesday", "04:00-04:50", "LC-II-C20"], + ["Friday", "04:00-04:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 762, + code: "FMC553", + name: "Fuel Technology Laboratory", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC553.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 763, + code: "FMC556", + name: "Materials Characterization Laboratory", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMC556.pdf", + credits: "0-0-3", + timetable: [], + semester: "WS", + }, + { + id: 764, + code: "FMD525", + name: "Iron and Steel Making", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD525.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "FME-1"], + ["Wednesday", "02:00-02:50", "FME-1"], + ["Friday", "02:00-02:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 765, + code: "FMD528", + name: "Power Plant Engineering", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD528.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 766, + code: "FMD531", + name: "Alternate Energy Systems", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD531.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "FME-1"], + ["Tuesday", "03:00-03:50", "FME-1"], + ["Thursday", "05:00-05:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 767, + code: "FMD540", + name: "Size Enlargement Processes", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD540.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "FME-1"], + ["Thursday", "03:00-03:50", "FME-1"], + ["Friday", "03:00-03:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 768, + code: "FMD541", + name: "Processing Equipment Selection", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD541.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "FME-1"], + ["Wednesday", "04:00-04:50", "FME-1"], + ["Friday", "04:00-04:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 769, + code: "MCC539", + name: "Advanced DBMS", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC539.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 770, + code: "MCC540", + name: "Neural Networks and Deep Learning", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC540.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-I-C18"], + ["Thursday", "03:00-03:50", "LC-I-C18"], + ["Friday", "03:00-03:50", "LC-I-C18"], + ], + semester: "WS", + }, + { + id: 771, + code: "MCC541", + name: "Advanced DBMS Practical", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC541.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 772, + code: "MCC542", + name: "Neural Networks and Deep Learning Practical", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC542.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "PG Lab-1"], + ["Wednesday", "10:00-10:50", "PG Lab-1"], + ], + semester: "WS", + }, + { + id: 773, + code: "MCD543", + name: "Missing Data Analysis in Survey Sampling", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD543.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 774, + code: "MCO531", + name: "Stochastic Processes", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCO531.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 775, + code: "MCO532", + name: "Advanced Multivariate Analysis", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCO532.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 776, + code: "MNC503", + name: "Mine Planning and Design", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC503.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "MIN-2"], + ["Thursday", "03:00-03:50", "MIN-2"], + ["Friday", "03:00-03:50", "MIN-2"], + ], + semester: "WS", + }, + { + id: 777, + code: "MNC506", + name: "Computer Aided Mine Planning and Design Practical", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC506.pdf", + credits: "0-0-3", + timetable: [ + ["Wednesday", "11:00-11:50", "CAMPAD Lab"], + ["Wednesday", "10:00-10:50", "CAMPAD Lab"], + ], + semester: "WS", + }, + { + id: 778, + code: "MNC508", + name: "Geostatistics and Mine Valuation", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "MIN-2"], + ["Wednesday", "02:00-02:50", "MIN-2"], + ["Friday", "02:00-02:50", "MIN-2"], + ], + semester: "WS", + }, + { + id: 779, + code: "MNC509", + name: "Mine Simulation and Data analytics Practical", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNC509.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "10:00-10:50", "CAMPAD Lab"], + ["Monday", "11:00-11:50", "CAMPAD Lab"], + ], + semester: "WS", + }, + { + id: 780, + code: "MND500", + name: "Managerial Decision Making", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND500.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-C5"], + ["Wednesday", "03:00-03:50", "LC-II-C5"], + ["Thursday", "04:00-04:50", "LC-II-C5"], + ], + semester: "WS", + }, + { + id: 781, + code: "MND556", + name: "Computational Geomechanics", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND556.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "MIN-1"], + ["Wednesday", "03:00-03:50", "MIN-1"], + ["Thursday", "04:00-04:50", "MIN-1"], + ], + semester: "WS", + }, + { + id: 782, + code: "MNO501", + name: "Mining, Energy and Climate Change", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNO501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "PET 2"], + ["Tuesday", "03:00-03:50", "PET 2"], + ["Thursday", "05:00-05:50", "PET 2"], + ], + semester: "WS", + }, + { + id: 783, + code: "MNO510", + name: "Rock Excavation Technology", + instructor: "n/a", + department: "Mining Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MNO510.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "MIN-2"], + ["Wednesday", "04:00-04:50", "MIN-2"], + ["Friday", "04:00-04:50", "MIN-2"], + ], + semester: "WS", + }, + { + id: 784, + code: "MEC509", + name: "Mechanical Engineering Lab - I", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC509.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "11:00-11:50", "ThE lab"], + ["Monday", "10:00-10:50", "ThE lab"], + ], + semester: "WS", + }, + { + id: 785, + code: "MEC510", + name: "Mechanical Engineering Lab - II", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC510.pdf", + credits: "0-0-3", + timetable: [ + ["Wednesday", "11:00-11:50", "Workshop"], + ["Wednesday", "10:00-10:50", "Workshop"], + ], + semester: "WS", + }, + { + id: 786, + code: "MED513", + name: "Thermo-Production Processes", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED513.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "MME-212"], + ["Wednesday", "03:00-03:50", "MME-212"], + ["Thursday", "04:00-04:50", "MME-212"], + ], + semester: "WS", + }, + { + id: 787, + code: "MED525", + name: "Rotor Dynamics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED525.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "MME-207"], + ["Thursday", "03:00-03:50", "MME-207"], + ["Friday", "03:00-03:50", "MME-207"], + ], + semester: "WS", + }, + { + id: 788, + code: "MED538", + name: "Gas Dynamics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED538.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "Mech G2"], + ["Wednesday", "03:00-03:50", "Mech G2"], + ["Thursday", "04:00-04:50", "Mech G2"], + ], + semester: "WS", + }, + { + id: 789, + code: "MED546", + name: "Conduction and Radiation", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED546.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "Mech G2"], + ["Wednesday", "02:00-02:50", "Mech G2"], + ["Friday", "02:00-02:50", "Mech G2"], + ], + semester: "WS", + }, + { + id: 790, + code: "MED547", + name: "Convective and Two-phase Flow", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED547.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "Mech G1"], + ["Friday", "03:00-03:50", "Mech G1"], + ], + semester: "WS", + }, + { + id: 791, + code: "MED554", + name: "Surface Engineering", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED554.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "MME-212"], + ["Tuesday", "03:00-03:50", "MME-212"], + ["Thursday", "05:00-05:50", "MME-212"], + ], + semester: "WS", + }, + { + id: 792, + code: "MED555", + name: "Computer Aided Manufacturing and Robotics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED555.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "02:00-02:50", "Mech G1"], + ["Friday", "02:00-02:50", "Mech G1"], + ], + semester: "WS", + }, + { + id: 793, + code: "MEO579", + name: "Computational Fluid Dynamics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO579.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "Mech G2"], + ["Wednesday", "04:00-04:50", "Mech G2"], + ["Friday", "04:00-04:50", "Mech G2"], + ], + semester: "WS", + }, + { + id: 794, + code: "MSC515", + name: "Software Lab", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC515.pdf", + credits: "0-0-2", + timetable: [["Tuesday", "06:00-06:50", " "]], + semester: "WS", + }, + { + id: 795, + code: "MSC517", + name: "Simulation Modelling & Analysis Lab", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC517.pdf", + credits: "0-0-2", + timetable: [["Wednesday", "09:00-09:50", " "]], + semester: "WS", + }, + { + id: 796, + code: "MSC519", + name: "Project Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC519.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "MS 210"], + ["Wednesday", "02:00-02:50", "MS 210"], + ["Friday", "02:00-02:50", "MS 210"], + ], + semester: "WS", + }, + { + id: 797, + code: "MSC520", + name: "Quality Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC520.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "MS 010"], + ["Thursday", "03:00-03:50", "MS 010"], + ["Friday", "03:00-03:50", "MS 010"], + ], + semester: "WS", + }, + { + id: 798, + code: "MSC527", + name: "Machine Learning", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC527.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 799, + code: "MSD512", + name: "Service Operations Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD512.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-G9"], + ["Tuesday", "03:00-03:50", "LC-II-G9"], + ["Thursday", "05:00-05:50", "LC-II-G9"], + ], + semester: "WS", + }, + { + id: 800, + code: "MSD526", + name: "Supply Chain Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD526.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "MS 010"], + ["Wednesday", "03:00-03:50", "MS 010"], + ["Thursday", "04:00-04:50", "MS 010"], + ], + semester: "WS", + }, + { + id: 801, + code: "PEC508", + name: "Petroleum Geomechanics and Hydraulic Fracturing", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "PET 4"], + ["Wednesday", "02:00-02:50", "PET 4"], + ["Friday", "02:00-02:50", "PET 4"], + ], + semester: "WS", + }, + { + id: 802, + code: "PEC509", + name: "Advanced Drilling Technology", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC509.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "PET 4"], + ["Thursday", "03:00-03:50", "PET 4"], + ["Friday", "03:00-03:50", "PET 4"], + ], + semester: "WS", + }, + { + id: 803, + code: "PEC510", + name: "Petroleum Instrumentation and Measurements Practical", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC510.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "11:00-11:50", "PE Instrumentation Laboratory"], + ["Monday", "10:00-10:50", "PE Instrumentation Laboratory"], + ], + semester: "WS", + }, + { + id: 804, + code: "PEC511", + name: "Development of Working Models Practical", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEC511.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "PET 4"], + ["Wednesday", "10:00-10:50", "PET 4"], + ], + semester: "WS", + }, + { + id: 805, + code: "PED501", + name: "Reservoir Simulation", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED501.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "03:00-03:50", "PET 4"], + ["Thursday", "04:00-04:50", "PET 4"], + ], + semester: "WS", + }, + { + id: 806, + code: "PEO501", + name: "Fluid Flow through Porous Media", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "PET 4"], + ["Tuesday", "03:00-03:50", "PET 4"], + ["Thursday", "05:00-05:50", "PET 4"], + ], + semester: "WS", + }, + { + id: 807, + code: "PEO503", + name: "Unconventional Hydrocarbon Resources", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PEO503.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "04:00-04:50", "PET 3"], + ["Wednesday", "04:00-04:50", "PET 3"], + ["Friday", "04:00-04:50", "PET 3"], + ], + semester: "WS", + }, + { + id: 808, + code: "CYC508", + name: "Kinetics and Thermodynamics", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC508.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "09:00-09:50", "LC-II-C10"], + ["Thursday", "09:00-09:50", "LC-II-C10"], + ["Friday", "10:00-10:50", "LC-II-C10"], + ], + semester: "WS", + }, + { + id: 809, + code: "CYC509", + name: "Methods in Organic Synthesis", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC509.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C10"], + ["Wednesday", "10:00-10:50", "LC-II-C10"], + ["Thursday", "11:00-11:50", "LC-II-C10"], + ], + semester: "WS", + }, + { + id: 810, + code: "CYC510", + name: "Organometallic Chemistry", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C10"], + ["Wednesday", "09:00-09:50", "LC-II-C10"], + ["Friday", "09:00-09:50", "LC-II-C10"], + ], + semester: "WS", + }, + { + id: 811, + code: "CYC511", + name: "Group Theory & Electronic Spectroscopy", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC511.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-C10"], + ["Tuesday", "10:00-10:50", "LC-II-C10"], + ["Thursday", "10:00-10:50", "LC-II-C10"], + ], + semester: "WS", + }, + { + id: 812, + code: "CYC512", + name: "Physical Chemistry Lab - I", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC512.pdf", + credits: "0-0-3", + timetable: [ + ["Thursday", "05:00-05:50", "PG Lab"], + ["Thursday", "04:00-04:50", "PG Lab"], + ], + semester: "WS", + }, + { + id: 813, + code: "CYC513", + name: "Organic Chemistry Lab - II", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC513.pdf", + credits: "0-0-3", + timetable: [ + ["Monday", "05:00-05:50", "PG Lab"], + ["Monday", "04:00-04:50", "PG Lab"], + ], + semester: "WS", + }, + { + id: 814, + code: "CYD513", + name: "Electroanalytical Methods", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD513.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "HSS class room -1"], + ["Wednesday", "12:00-12:50", "HSS class room -1"], + ["Friday", "12:00-12:50", "HSS class room -1"], + ], + semester: "WS", + }, + { + id: 815, + code: "CYO503", + name: "Rechargeable Battery Science and Technology", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYO503.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 816, + code: "MCC508", + name: "Advanced Algebra", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "11:00-11:50", "LC-II-G4"], + ["Tuesday", "10:00-10:50", "LC-II-G4"], + ["Thursday", "10:00-10:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 817, + code: "MCC509", + name: "Statistical Inference", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC509.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 818, + code: "MCC510", + name: "Operating Systems", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC510.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 819, + code: "MCC511", + name: "Database Management Systems", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC511.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 820, + code: "MCC512", + name: "Operating Systems Practical", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC512.pdf", + credits: "0-0-3", + timetable: [], + semester: "WS", + }, + { + id: 821, + code: "MCC513", + name: "Database Management Systems Practical", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC513.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 822, + code: "MCD504", + name: "Measure Theory", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G4"], + ["Wednesday", "12:00-12:50", "LC-II-G4"], + ["Friday", "12:00-12:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 823, + code: "PHC508", + name: "Quantum Mechanics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC508.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C8"], + ["Wednesday", "09:00-09:50", "LC-II-C8"], + ["Friday", "09:00-09:50", "LC-II-C8"], + ], + semester: "WS", + }, + { + id: 824, + code: "PHC509", + name: "Electrodynamics and Radiation theory", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC509.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "09:00-09:50", "LC-II-C8"], + ["Thursday", "09:00-09:50", "LC-II-C8"], + ["Friday", "10:00-10:50", "LC-II-C8"], + ], + semester: "WS", + }, + { + id: 825, + code: "PHC510", + name: "Atomic and Molecular Physics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC510.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 826, + code: "PHC511", + name: "Condensed Matter Physics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC511.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C8"], + ["Wednesday", "10:00-10:50", "LC-II-C8"], + ["Thursday", "11:00-11:50", "LC-II-C8"], + ], + semester: "WS", + }, + { + id: 827, + code: "PHC512", + name: "Experimental Physics - III", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC512.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "PHPG LAB"], + ["Monday", "04:00-04:50", "PHPG LAB"], + ], + semester: "WS", + }, + { + id: 828, + code: "PHC513", + name: "Experimental Physics - IV", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC513.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "05:00-05:50", "PHPG LAB"], + ["Thursday", "04:00-04:50", "PHPG LAB"], + ], + semester: "WS", + }, + { + id: 829, + code: "PHD502", + name: "Computational Physics", + instructor: "n/a", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD502.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-I-C9"], + ["Wednesday", "12:00-12:50", "LC-I-C9"], + ["Friday", "12:00-12:50", "LC-I-C9"], + ], + semester: "WS", + }, + { + id: 830, + code: "", + name: "", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 831, + code: "MSD514", + name: "Financial Econometrics", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD514.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "MS 111"], + ["Tuesday", "03:00-03:50", "MS 111"], + ["Thursday", "05:00-05:50", "MS 111"], + ], + semester: "WS", + }, + { + id: 832, + code: "MSD515", + name: "Services Marketing", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD515.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "MS 209"], + ["Thursday", "03:00-03:50", "MS 209"], + ["Friday", "03:00-03:50", "MS 209"], + ], + semester: "WS", + }, + { + id: 833, + code: "MSD521", + name: "Consumer Behaviour", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD521.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "MS 210"], + ["Wednesday", "03:00-03:50", "MS 210"], + ["Thursday", "04:00-04:50", "MS 210"], + ], + semester: "WS", + }, + { + id: 834, + code: "MSC510", + name: "Corporate Finance", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "MS 209"], + ["Wednesday", "10:00-10:50", "MS 209"], + ["Friday", "10:00-10:50", "MS 209"], + ], + semester: "WS", + }, + { + id: 835, + code: "MSC511", + name: "Organizational Behaviour", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC511.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "MS 210"], + ["Tuesday", "10:00-10:50", "MS 210"], + ["Thursday", "10:00-10:50", "MS 210"], + ], + semester: "WS", + }, + { + id: 836, + code: "MSC512", + name: "Operations Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC512.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "MS 011"], + ["Wednesday", "11:00-11:50", "MS 011"], + ["Friday", "09:00-09:50", "MS 011"], + ], + semester: "WS", + }, + { + id: 837, + code: "MSC513", + name: "Marketing Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC513.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "MS 210"], + ["Tuesday", "09:00-09:50", "MS 210"], + ["Thursday", "12:00-12:50", "MS 210"], + ], + semester: "WS", + }, + { + id: 838, + code: "MSC514", + name: "Human Resources Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC514.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "12:00-12:50", "MS 210"], + ["Wednesday", "12:00-12:50", "MS 210"], + ["Friday", "12:00-12:50", "MS 210"], + ], + semester: "WS", + }, + { + id: 839, + code: "MSC515", + name: "Software Lab", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC515.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 840, + code: "MSC517", + name: "Simulation Modelling & Analysis Lab", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC517.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 841, + code: "MCC539", + name: "Advanced DBMS", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MCC539.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 842, + code: "MCC541", + name: "Advanced DBMS Practical", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MCC541.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 843, + code: "MCO531", + name: "Stochastic Processes", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MCO531.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 844, + code: "MSC510", + name: "Corporate Finance", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC510.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 845, + code: "MSC524", + name: "Marketing Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC524.pdf", + credits: "4-0-0", + timetable: [ + ["Monday", "12:00-12:50", "MS 111"], + ["Tuesday", "09:00-09:50", "MS 111"], + ["Thursday", "12:00-12:50", "MS 111"], + ["Friday", "12:00-12:50", "MS 111"], + ], + semester: "WS", + }, + { + id: 846, + code: "MSC525", + name: "Human Resources Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC525.pdf", + credits: "4-0-0", + timetable: [ + ["Monday", "12:00-12:50", "MS 209"], + ["Tuesday", "09:00-09:50", "MS 209"], + ["Thursday", "12:00-12:50", "MS 209"], + ["Friday", "12:00-12:50", "MS 209"], + ], + semester: "WS", + }, + { + id: 847, + code: "MSC527", + name: "Machine Learning", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC527.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 848, + code: "MSC528", + name: "Machine Learning Lab", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC528.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "11:00-11:50", "MS 010"], + ["Wednesday", "12:00-12:50", "MS 010"], + ], + semester: "WS", + }, + { + id: 849, + code: "", + name: "", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 850, + code: "MSC529", + name: "Big Data Lab", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSC529.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "11:00-11:50", "MS 111"], + ["Thursday", "10:00-10:50", "MS 111"], + ], + semester: "WS", + }, + { + id: 851, + code: "MSD514", + name: "Financial Econometrics", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD514.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 852, + code: "MSD519", + name: "International Finance", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD519.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "MS 111"], + ["Wednesday", "06:00-06:50", "MS 111"], + ["Thursday", "06:00-06:50", "MS 111"], + ], + semester: "WS", + }, + { + id: 853, + code: "MSD520", + name: "Merchant Banking and Financial Services", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD520.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "MS 011"], + ["Tuesday", "06:00-06:50", "MS 011"], + ["Thursday", "02:00-02:50", "MS 011"], + ], + semester: "WS", + }, + { + id: 854, + code: "MSD524", + name: "International Human Resource Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD524.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 855, + code: "MSD537", + name: "HR Analytics", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD537.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 856, + code: "GLC509", + name: "Igneous Petrology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC509.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 857, + code: "GLC510", + name: "Metamorphic Petrology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC510.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 858, + code: "GLC511", + name: "Applied Sedimentology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC511.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-C11"], + ["Wednesday", "03:00-03:50", "LC-II-C11"], + ["Thursday", "03:00-03:50", "LC-II-C11"], + ], + semester: "WS", + }, + { + id: 859, + code: "GLC512", + name: "Petroleum Geology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC512.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "04:00-04:50", "PET 2"], + ["Wednesday", "04:00-04:50", "PET 2"], + ["Friday", "04:00-04:50", "PET 2"], + ], + semester: "WS", + }, + { + id: 860, + code: "GLC513", + name: "Coal Geology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC513.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 861, + code: "GLC514", + name: "Igneous and Metamorphic Petrology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC514.pdf", + credits: "0-0-3", + timetable: [["Tuesday", "12:00-12:50", "Petrology Lab"]], + semester: "WS", + }, + { + id: 862, + code: "GLC515", + name: "Sedimentology and Petroleum Geology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC515.pdf", + credits: "0-0-3", + timetable: [], + semester: "WS", + }, + { + id: 863, + code: "GLC516", + name: "Coal Geology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC516.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 864, + code: "GPC508", + name: "Earthquake Seismology", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC508.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 865, + code: "GPC509", + name: "Geoelectrical Method", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC509.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 866, + code: "GPC510", + name: "Well Logging", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-C12"], + ["Wednesday", "06:00-06:50", "LC-II-C12"], + ["Friday", "06:00-06:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 867, + code: "GPC511", + name: "Seismic Data Acquisition", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC511.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 868, + code: "GPC512", + name: "Seismic Data Acquisition Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC512.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 869, + code: "GPC513", + name: "Geoelectrical Methods Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC513.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 870, + code: "GPC515", + name: "Earthquake Seismology and Well Logging Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC515.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 871, + code: "GLC526", + name: "Ore Geology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC526.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 872, + code: "GLC527", + name: "Exploration Geology and Mineral Economics", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC527.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "10:00-10:50", "LC-II-C11"], + ["Wednesday", "10:00-10:50", "LC-II-C11"], + ["Thursday", "11:00-11:50", "LC-II-C11"], + ], + semester: "WS", + }, + { + id: 873, + code: "GLC533", + name: "Ore Geology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC533.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 874, + code: "GLC534", + name: "Exploration Geology Practical", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC534.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-C11"], + ["Tuesday", "02:00-02:50", "LC-II-C11"], + ], + semester: "WS", + }, + { + id: 875, + code: "GLD531", + name: "Sequence Stratigraphy and Basin Analysis", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD531.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "LC-II-C11"], + ["Thursday", "12:00-12:50", "LC-II-C11"], + ["Friday", "10:00-10:50", "LC-II-C11"], + ], + semester: "WS", + }, + { + id: 876, + code: "GLD544", + name: "Kinematics of Rock Deformation", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD544.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 877, + code: "GLO542", + name: "Remote Sensing and GIS", + instructor: "n/a", + department: "Applied Geology", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLO542.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 878, + code: "GPC520", + name: "Magnetic Method", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC520.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 879, + code: "GPC521", + name: "Geoelectromagnetic Method", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC521.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 880, + code: "GPC522", + name: "Magnetic Method Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC522.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 881, + code: "GPC523", + name: "Geoelectromagnetic Method Practical", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC523.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 882, + code: "GPD509", + name: "Well Log and Electrofacies Analysis", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD509.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "11:00-11:50", "LC-II-C14"], + ["Thursday", "09:00-09:50", "LC-II-C14"], + ["Friday", "10:00-10:50", "LC-II-C14"], + ], + semester: "WS", + }, + { + id: 883, + code: "GPD510", + name: "Reservoir Geophysics and Deep Water Imaging", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "09:00-09:50", "LC-II-C14"], + ["Wednesday", "09:00-09:50", "LC-II-C14"], + ], + semester: "WS", + }, + { + id: 884, + code: "GPO510", + name: "Strong Motion Seismology and Structural Responses", + instructor: "n/a", + department: "Applied Geophysics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPO510.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "08:00-08:50", "LC-II-C14"], + ["Thursday", "08:00-08:50", "LC-II-C14"], + ["Friday", "09:00-09:50", "LC-II-C14"], + ], + semester: "WS", + }, + { + id: 885, + code: "CYP003", + name: "Chemistry - II", + instructor: "n/a", + department: "Preparatory", + type: "Department Practical (DP)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/prep/CYP003.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 886, + code: "CYP004", + name: "Chemistry Lab - II", + instructor: "n/a", + department: "Preparatory", + type: "Department Practical (DP)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/prep/CYP004.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 887, + code: "HSP002", + name: "English - II", + instructor: "n/a", + department: "Preparatory", + type: "Department Practical (DP)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/prep/HSP002.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 888, + code: "MCP002", + name: "Mathematics - II", + instructor: "n/a", + department: "Preparatory", + type: "Department Practical (DP)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/prep/MCP002.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 889, + code: "PHP003", + name: "Physics - II", + instructor: "n/a", + department: "Preparatory", + type: "Department Practical (DP)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/prep/PHP003.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 890, + code: "PHP004", + name: "Physics Lab - II", + instructor: "n/a", + department: "Preparatory", + type: "Department Practical (DP)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/prep/PHP004.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 891, + code: "GPD521", + name: "Time Series Analysis in Geosciences", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD521.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 892, + code: "CYD518", + name: "Metalloenzymes-Special Topics", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD518.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "LC-II-C3"], + ["Wednesday", "05:00-05:50", "LC-II-C3"], + ["Friday", "05:00-05:50", "LC-II-C3"], + ], + semester: "WS", + }, + { + id: 893, + code: "CYD528", + name: "Modern Separation Techniques", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD528.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 894, + code: "CHD503", + name: "Catalysts & Materials Characterization Techniques", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD503.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "CHE-402"], + ["Tuesday", "06:00-06:50", "CHE-402"], + ["Thursday", "02:00-02:50", "CHE-402"], + ], + semester: "WS", + }, + { + id: 895, + code: "CHD507", + name: "Modelling & Simulation", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHD507.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "CHE-434"], + ["Tuesday", "06:00-06:50", "CHE-434"], + ["Thursday", "02:00-02:50", "CHE-434"], + ], + semester: "WS", + }, + { + id: 896, + code: "CHO504", + name: "Electrochemical Energy Science and Engineering", + instructor: "n/a", + department: "Chemical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHO504.pdf", + credits: "3-0-0", + timetable: [["Friday", "05:00-05:50", " "]], + semester: "WS", + }, + { + id: 897, + code: "CSD503", + name: "Computational Number Theory", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD503.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "CSE CR1"], + ["Tuesday", "06:00-06:50", "CSE CR1"], + ["Thursday", "02:00-02:50", "CSE CR1"], + ], + semester: "WS", + }, + { + id: 898, + code: "CSD518", + name: "Pattern Recognition", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSD518.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C19"], + ["Tuesday", "06:00-06:50", "LC-II-C19"], + ["Thursday", "02:00-02:50", "LC-II-C19"], + ], + semester: "WS", + }, + { + id: 899, + code: "CSO502", + name: "Data Analytics", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSO502.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "NAC Hall"], + ["Wednesday", "05:00-05:50", "NAC Hall"], + ["Friday", "05:00-05:50", "NAC Hall"], + ], + semester: "WS", + }, + { + id: 900, + code: "CEO529", + name: "Blast Protection of Structures", + instructor: "n/a", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO529.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "CECR1"], + ["Tuesday", "06:00-06:50", "CECR1"], + ["Thursday", "02:00-02:50", "CECR1"], + ], + semester: "WS", + }, + { + id: 901, + code: "CEO530", + name: "Sustainable Engineering", + instructor: "n/a", + department: "Civil Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEO530.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "CECR3"], + ["Wednesday", "05:00-05:50", "CECR3"], + ["Friday", "05:00-05:50", "CECR3"], + ], + semester: "WS", + }, + { + id: 902, + code: "ECD510", + name: "Quantum Computation", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD510.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G13"], + ["Tuesday", "06:00-06:50", "LC-II-G13"], + ["Thursday", "02:00-02:50", "LC-II-G13"], + ], + semester: "WS", + }, + { + id: 903, + code: "ECD561", + name: "ASIC Design", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECD561.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 904, + code: "ECO542", + name: "Advanced Microwave Measurement & Instrument", + instructor: "n/a", + department: "Electronics Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECO542.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 905, + code: "EED501", + name: "Design of Power Converters", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED501.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "LC-II-C2"], + ["Wednesday", "05:00-05:50", "LC-II-C2"], + ["Friday", "05:00-05:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 906, + code: "EED502", + name: "Advanced Machine Drives", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EED502.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C2"], + ["Tuesday", "06:00-06:50", "LC-II-C2"], + ["Thursday", "02:00-02:50", "LC-II-C2"], + ], + semester: "WS", + }, + { + id: 907, + code: "ESD506", + name: "Biomedical and Hazardous Waste Management", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD506.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C20"], + ["Tuesday", "06:00-06:50", "LC-II-C20"], + ["Thursday", "02:00-02:50", "LC-II-C20"], + ], + semester: "WS", + }, + { + id: 908, + code: "ESD509", + name: "Air and Noise Pollution Control", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESD509.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 909, + code: "FMD534", + name: "Metal Forming Technology", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMD534.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 910, + code: "FMO541", + name: "Characterization of Materials", + instructor: "n/a", + department: "Fuel Mineral & Metallurgical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/fme/FMO541.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "FME-2"], + ["Wednesday", "05:00-05:50", "FME-2"], + ["Friday", "05:00-05:50", "FME-2"], + ], + semester: "WS", + }, + { + id: 911, + code: "MCD540", + name: "Biostatistics", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD540.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 912, + code: "MCO533", + name: "Numerical Linear Algebra", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCO533.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "LC-I-C18"], + ["Wednesday", "05:00-05:50", "LC-I-C18"], + ["Friday", "05:00-05:50", "LC-I-C18"], + ], + semester: "WS", + }, + { + id: 913, + code: "MND504", + name: "Modelling and Analysis of Geospatial data", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND504.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "PG Lab-1 Geomatics"], + ["Tuesday", "06:00-06:50", "PG Lab-1 Geomatics"], + ["Thursday", "02:00-02:50", "PG Lab-1 Geomatics"], + ], + semester: "WS", + }, + { + id: 914, + code: "MND505", + name: "Geospatial Technologies for Natural Resources", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND505.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "PG Lab-1 Geomatics"], + ["Wednesday", "05:00-05:50", "PG Lab-1 Geomatics"], + ["Friday", "05:00-05:50", "PG Lab-1 Geomatics"], + ], + semester: "WS", + }, + { + id: 915, + code: "MND511", + name: "Modern Blasting Technology in Mining", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND511.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "MIN-2"], + ["Tuesday", "06:00-06:50", "MIN-2"], + ["Thursday", "02:00-02:50", "MIN-2"], + ], + semester: "WS", + }, + { + id: 916, + code: "MND547", + name: "Mine Automation", + instructor: "n/a", + department: "Mining Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/me/MND547.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "MIN-2"], + ["Wednesday", "05:00-05:50", "MIN-2"], + ["Friday", "05:00-05:50", "MIN-2"], + ], + semester: "WS", + }, + { + id: 917, + code: "MED503", + name: "Finite Element Method", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED503.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-C14"], + ["Tuesday", "06:00-06:50", "LC-II-C14"], + ["Thursday", "02:00-02:50", "LC-II-C14"], + ], + semester: "WS", + }, + { + id: 918, + code: "MED509", + name: "Advanced Thermodynamics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED509.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "Mech G2"], + ["Wednesday", "05:00-05:50", "Mech G2"], + ["Friday", "05:00-05:50", "Mech G2"], + ], + semester: "WS", + }, + { + id: 919, + code: "MED515", + name: "Theory of Metal Forming", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MED515.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "NAC Hall"], + ["Tuesday", "06:00-06:50", "NAC Hall"], + ["Thursday", "02:00-02:50", "NAC Hall"], + ], + semester: "WS", + }, + { + id: 920, + code: "MEO534", + name: "Automation and Control", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEO534.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "LC-II-G16"], + ["Wednesday", "05:00-05:50", "LC-II-G16"], + ["Friday", "05:00-05:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 921, + code: "MSD505", + name: "Materials Management", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD505.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "MS 111"], + ["Tuesday", "06:00-06:50", "MS 111"], + ["Thursday", "02:00-02:50", "MS 111"], + ], + semester: "WS", + }, + { + id: 922, + code: "MSD525", + name: "Operations Analytics", + instructor: "n/a", + department: "Management Studies and Industrial Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/msie/MSD525.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "MS 209"], + ["Wednesday", "05:00-05:50", "MS 209"], + ["Friday", "05:00-05:50", "MS 209"], + ], + semester: "WS", + }, + { + id: 923, + code: "PED503", + name: "Enhanced Oil and Gas Recovery Methods", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED503.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "PET 4"], + ["Tuesday", "06:00-06:50", "PET 4"], + ["Thursday", "02:00-02:50", "PET 4"], + ], + semester: "WS", + }, + { + id: 924, + code: "PED504", + name: "Profile Modification & Water Shutoff", + instructor: "n/a", + department: "Petroleum Engineering", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/pe/PED504.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "PET 4"], + ["Wednesday", "05:00-05:50", "PET 4"], + ["Friday", "05:00-05:50", "PET 4"], + ], + semester: "WS", + }, + { + id: 925, + code: "CYD501", + name: "Medicinal Chemistry", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD501.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-C10"], + ["Tuesday", "04:00-04:50", "LC-II-C10"], + ["Thursday", "05:00-05:50", "LC-II-C10"], + ], + semester: "WS", + }, + { + id: 926, + code: "CYD502", + name: "Polymer Chemistry", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD502.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 927, + code: "CYD505", + name: "Asymmetric Synthesis", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD505.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "LC-II-C10"], + ["Wednesday", "05:00-05:50", "LC-II-C10"], + ["Friday", "03:00-03:50", "LC-II-C10"], + ], + semester: "WS", + }, + { + id: 928, + code: "CYD506", + name: "Computational Chemistry", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD506.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 929, + code: "CYD512", + name: "Modern Aspects of Catalysis and Surface Science", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD512.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "HSS class room -1"], + ["Tuesday", "04:00-04:50", "HSS class room -1"], + ["Thursday", "05:00-05:50", "HSS class room -1"], + ], + semester: "WS", + }, + { + id: 930, + code: "CYD520", + name: "Advanced Fluorescence Spectroscopy", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYD520.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "HSS class room -1"], + ["Wednesday", "05:00-05:50", "HSS class room -1"], + ["Friday", "03:00-03:50", "HSS class room -1"], + ], + semester: "WS", + }, + { + id: 931, + code: "MCD503", + name: "Integral Equations and Calculus of Variations", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD503.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "LC-I-C11"], + ["Wednesday", "05:00-05:50", "LC-I-C11"], + ["Friday", "03:00-03:50", "LC-I-C11"], + ], + semester: "WS", + }, + { + id: 932, + code: "MCD513", + name: "Methods of Applied Mathematics", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD513.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 933, + code: "PHD507", + name: "Plasma and Space Physics", + instructor: "n/a", + department: "Physics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHD507.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "AGL-1"], + ["Tuesday", "04:00-04:50", "AGL-1"], + ["Thursday", "05:00-05:50", "AGL-1"], + ], + semester: "WS", + }, + { + id: 934, + code: "PHO502", + name: "Introduction to Biophysics", + instructor: "n/a", + department: "Physics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHO502.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "MS 010"], + ["Wednesday", "05:00-05:50", "MS 010"], + ], + semester: "WS", + }, + { + id: 935, + code: "GLD575", + name: "Modern Instrumental Methods in Exploration Geosciences", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD575.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "AGL-3"], + ["Tuesday", "04:00-04:50", "AGL-3"], + ["Friday", "05:00-05:50", "AGL-3"], + ], + semester: "WS", + }, + { + id: 936, + code: "GLO501", + name: "Image Processing and Data Analysis", + instructor: "n/a", + department: "Applied Geology", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLO501.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "06:00-06:50", "AGL-3"], + ["Wednesday", "05:00-05:50", "AGL-3"], + ["Thursday", "04:00-04:50", "AGL-3"], + ], + semester: "WS", + }, + { + id: 937, + code: "GPD522", + name: "Computational Seismology", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD522.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-C14"], + ["Tuesday", "04:00-04:50", "LC-II-C14"], + ["Friday", "05:00-05:50", "LC-II-C14"], + ], + semester: "WS", + }, + { + id: 938, + code: "GPO511", + name: "Satellite Image Processing and Geographic Information System", + instructor: "n/a", + department: "Applied Geophysics", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPO511.pdf", + credits: "3-0-0", + timetable: [ + ["Wednesday", "05:00-05:50", "LC-II-C14"], + ["Thursday", "04:00-04:50", "LC-II-C14"], + ], + semester: "WS", + }, + { + id: 939, + code: "", + name: "", + instructor: "n/a", + department: "Applied Geology", + type: "", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 940, + code: "GLD551", + name: "Elements of Rock Engineering", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD551.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "AGL-2"], + ["Tuesday", "04:00-04:50", "AGL-2"], + ["Friday", "05:00-05:50", "AGL-2"], + ], + semester: "WS", + }, + { + id: 941, + code: "", + name: "", + instructor: "n/a", + department: "Applied Geophysics", + type: "", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 942, + code: "GPD505", + name: "Near Surface Geophysics and Geotechnical Modelling", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPD505.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-C12"], + ["Tuesday", "04:00-04:50", "LC-II-C12"], + ["Friday", "05:00-05:50", "LC-II-C12"], + ], + semester: "WS", + }, + { + id: 943, + code: "MCD532", + name: "Data Mining", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD532.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 944, + code: "MCD535", + name: "Bioinformatics", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCD535.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "06:00-06:50", "LC-II-G16"], + ["Thursday", "04:00-04:50", "LC-II-G16"], + ], + semester: "WS", + }, + { + id: 945, + code: "CEI101", + name: "Engineering Graphics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CEI101.pdf", + credits: "1-0-3", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-G4"], + ["Friday", "10:00-10:50", "LC-II-G4"], + ["Friday", "08:00-08:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 946, + code: "CSI101", + name: "Computer Programming", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI101.pdf", + credits: "02-01-2000", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G2"], + ["Tuesday", "03:00-03:50", "LC-II-G2"], + ["Wednesday", "04:00-04:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 947, + code: "CSI102", + name: "Computer Programming Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI102.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "10:00-10:50", "NLHC Computer Lab - I"], + ["Thursday", "09:00-09:50", "NLHC Computer Lab - I"], + ], + semester: "WS", + }, + { + id: 948, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-G1"], + ["Tuesday", "05:00-05:50", "LC-II-G1"], + ["Thursday", "02:00-02:50", "LC-II-G1"], + ["Friday", "03:00-03:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 949, + code: "MEI101", + name: "Engineering Mechanics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI101.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-G4"], + ["Wednesday", "02:00-02:50", "LC-II-G4"], + ["Thursday", "03:00-03:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 950, + code: "MSI101", + name: "Engineering Economics and Finance", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MSI101.pdf", + credits: "2-0-0", + timetable: [ + ["Wednesday", "05:00-05:50", "LC-II-G4"], + ["Friday", "05:00-05:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 951, + code: "PHI101", + name: "Physics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI101.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G4"], + ["Tuesday", "04:00-04:50", "LC-II-G4"], + ["Friday", "02:00-02:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 952, + code: "PHI102", + name: "Physics Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI102.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "10:00-10:50", "PHUG LAB 1 "], + ["Tuesday", "09:00-09:50", "PHUG LAB 1 "], + ], + semester: "WS", + }, + { + id: 953, + code: "CEI101", + name: "Engineering Graphics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CEI101.pdf", + credits: "1-0-3", + timetable: [], + semester: "WS", + }, + { + id: 954, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 955, + code: "MCI103", + name: "Numerical Methods", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI103.pdf", + credits: "02-02-2000", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G8"], + ["Tuesday", "03:00-03:50", "LC-II-G8"], + ["Wednesday", "04:00-04:50", "LC-II-G8"], + ["Thursday", "05:00-05:50", "LC-II-G8"], + ], + semester: "WS", + }, + { + id: 956, + code: "MEI101", + name: "Engineering Mechanics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI101.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 957, + code: "MSI101", + name: "Engineering Economics and Finance", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MSI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 958, + code: "PHI101", + name: "Physics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 959, + code: "PHI102", + name: "Physics Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 960, + code: "CEI101", + name: "Engineering Graphics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CEI101.pdf", + credits: "1-0-3", + timetable: [ + ["Tuesday", "03:00-03:50", "LC-II-G4"], + ["Thursday", "09:00-09:50", "LC-II-G4"], + ["Thursday", "08:00-08:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 961, + code: "CSI101", + name: "Computer Programming", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI101.pdf", + credits: "02-01-2000", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G2"], + ["Tuesday", "04:00-04:50", "LC-II-G2"], + ["Friday", "02:00-02:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 962, + code: "CSI102", + name: "Computer Programming Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI102.pdf", + credits: "0-0-2", + timetable: [ + ["Wednesday", "10:00-10:50", "NLHC Computer Lab - I"], + ["Wednesday", "09:00-09:50", "NLHC Computer Lab - I"], + ], + semester: "WS", + }, + { + id: 963, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-G1"], + ["Wednesday", "02:00-02:50", "LC-II-G1"], + ["Thursday", "03:00-03:50", "LC-II-G1"], + ["Friday", "04:00-04:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 964, + code: "MEI101", + name: "Engineering Mechanics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI101.pdf", + credits: "03-01-2000", + timetable: [ + ["Wednesday", "03:00-03:50", "LC-II-G4"], + ["Thursday", "04:00-04:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 965, + code: "MSI101", + name: "Engineering Economics and Finance", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MSI101.pdf", + credits: "2-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "LC-II-G4"], + ["Thursday", "05:00-05:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 966, + code: "PHI101", + name: "Physics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI101.pdf", + credits: "3-0-0", + timetable: [ + ["Thursday", "02:00-02:50", "LC-II-G4"], + ["Friday", "03:00-03:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 967, + code: "PHI102", + name: "Physics Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI102.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "09:00-09:50", "PHUG LAB 1 "], + ["Monday", "10:00-10:50", "PHUG LAB 1 "], + ], + semester: "WS", + }, + { + id: 968, + code: "CEI101", + name: "Engineering Graphics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CEI101.pdf", + credits: "1-0-3", + timetable: [], + semester: "WS", + }, + { + id: 969, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 970, + code: "MCI103", + name: "Numerical Methods", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI103.pdf", + credits: "02-02-2000", + timetable: [ + ["Monday", "03:00-03:50", "LC-II-G8"], + ["Tuesday", "04:00-04:50", "LC-II-G8"], + ["Wednesday", "05:00-05:50", "LC-II-G8"], + ["Friday", "02:00-02:50", "LC-II-G8"], + ], + semester: "WS", + }, + { + id: 971, + code: "MEI101", + name: "Engineering Mechanics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI101.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 972, + code: "MSI101", + name: "Engineering Economics and Finance", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MSI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 973, + code: "PHI101", + name: "Physics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 974, + code: "PHI102", + name: "Physics Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 975, + code: "CEI101", + name: "Engineering Graphics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CEI101.pdf", + credits: "1-0-3", + timetable: [["Wednesday", "08:00-08:50", "LC-II-G4"]], + semester: "WS", + }, + { + id: 976, + code: "CSI101", + name: "Computer Programming", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI101.pdf", + credits: "02-01-2000", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-G2"], + ["Thursday", "02:00-02:50", "LC-II-G2"], + ["Friday", "03:00-03:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 977, + code: "CSI102", + name: "Computer Programming Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI102.pdf", + credits: "0-0-2", + timetable: [["Tuesday", "09:00-09:50", "NLHC Computer Lab - I"]], + semester: "WS", + }, + { + id: 978, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-G1"], + ["Wednesday", "03:00-03:50", "LC-II-G1"], + ["Thursday", "04:00-04:50", "LC-II-G1"], + ["Friday", "05:00-05:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 979, + code: "MEI101", + name: "Engineering Mechanics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI101.pdf", + credits: "03-01-2000", + timetable: [["Monday", "02:00-02:50", "LC-II-G4"]], + semester: "WS", + }, + { + id: 980, + code: "MSI101", + name: "Engineering Economics and Finance", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MSI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 981, + code: "PHI101", + name: "Physics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 982, + code: "PHI102", + name: "Physics Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI102.pdf", + credits: "0-0-2", + timetable: [ + ["Friday", "10:00-10:50", "PHUG LAB 1 "], + ["Friday", "09:00-09:50", "PHUG LAB 1 "], + ], + semester: "WS", + }, + { + id: 983, + code: "CEI101", + name: "Engineering Graphics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CEI101.pdf", + credits: "1-0-3", + timetable: [], + semester: "WS", + }, + { + id: 984, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 985, + code: "MCI103", + name: "Numerical Methods", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI103.pdf", + credits: "02-02-2000", + timetable: [ + ["Monday", "04:00-04:50", "LC-II-G8"], + ["Tuesday", "05:00-05:50", "LC-II-G8"], + ["Thursday", "02:00-02:50", "LC-II-G8"], + ["Friday", "03:00-03:50", "LC-II-G8"], + ], + semester: "WS", + }, + { + id: 986, + code: "MEI101", + name: "Engineering Mechanics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI101.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 987, + code: "MSI101", + name: "Engineering Economics and Finance", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MSI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 988, + code: "PHI101", + name: "Physics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 989, + code: "PHI102", + name: "Physics Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 990, + code: "CEI101", + name: "Engineering Graphics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CEI101.pdf", + credits: "1-0-3", + timetable: [ + ["Tuesday", "09:00-09:50", "LC-II-G4"], + ["Tuesday", "08:00-08:50", "LC-II-G4"], + ], + semester: "WS", + }, + { + id: 991, + code: "CSI101", + name: "Computer Programming", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI101.pdf", + credits: "02-01-2000", + timetable: [ + ["Wednesday", "02:00-02:50", "LC-II-G2"], + ["Thursday", "03:00-03:50", "LC-II-G2"], + ["Friday", "04:00-04:50", "LC-II-G2"], + ], + semester: "WS", + }, + { + id: 992, + code: "CSI102", + name: "Computer Programming Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI102.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "10:00-10:50", "NLHC Computer Lab - I"], + ["Monday", "09:00-09:50", "NLHC Computer Lab - I"], + ], + semester: "WS", + }, + { + id: 993, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [ + ["Monday", "02:00-02:50", "LC-II-G1"], + ["Tuesday", "03:00-03:50", "LC-II-G1"], + ["Wednesday", "04:00-04:50", "LC-II-G1"], + ["Thursday", "05:00-05:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 994, + code: "MEI101", + name: "Engineering Mechanics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI101.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 995, + code: "MSI101", + name: "Engineering Economics and Finance", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MSI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 996, + code: "PHI101", + name: "Physics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 997, + code: "PHI102", + name: "Physics Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI102.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "10:00-10:50", "PHUG LAB 1 "], + ["Thursday", "09:00-09:50", "PHUG LAB 1 "], + ], + semester: "WS", + }, + { + id: 998, + code: "CEI101", + name: "Engineering Graphics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CEI101.pdf", + credits: "1-0-3", + timetable: [], + semester: "WS", + }, + { + id: 999, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1000, + code: "MCI103", + name: "Numerical Methods", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI103.pdf", + credits: "02-02-2000", + timetable: [ + ["Monday", "05:00-05:50", "LC-II-G8"], + ["Wednesday", "02:00-02:50", "LC-II-G8"], + ["Thursday", "03:00-03:50", "LC-II-G8"], + ["Friday", "04:00-04:50", "LC-II-G8"], + ], + semester: "WS", + }, + { + id: 1001, + code: "MEI101", + name: "Engineering Mechanics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI101.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1002, + code: "MSI101", + name: "Engineering Economics and Finance", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MSI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1003, + code: "PHI101", + name: "Physics", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1004, + code: "PHI102", + name: "Physics Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/PHI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1005, + code: "CYI101", + name: "Chemistry", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1006, + code: "CYI102", + name: "Chemistry Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI102.pdf", + credits: "0-0-2", + timetable: [ + ["Tuesday", "10:00-10:50", "UG Lab"], + ["Tuesday", "09:00-09:50", "UG Lab"], + ], + semester: "WS", + }, + { + id: 1007, + code: "GLI101", + name: "Earth Sciences", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/GLI101.pdf", + credits: "2-0-0", + timetable: [["Friday", "05:00-05:50", "LC-II-G8"]], + semester: "WS", + }, + { + id: 1008, + code: "HSI101", + name: "Communication Skills", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/HSI101.pdf", + credits: "1-0-2", + timetable: [["Wednesday", "12:00-12:50", "LC-II-G1"]], + semester: "WS", + }, + { + id: 1009, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1010, + code: "MCI103", + name: "Numerical Methods", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI103.pdf", + credits: "02-02-2000", + timetable: [], + semester: "WS", + }, + { + id: 1011, + code: "MEI102", + name: "Manufacturing Processes", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI102.pdf", + credits: "2-0-3", + timetable: [ + ["Friday", "11:00-11:50", "LC-II-G1"], + ["Friday", "10:00-10:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 1012, + code: "CSI101", + name: "Computer Programming", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI101.pdf", + credits: "02-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1013, + code: "CSI102", + name: "Computer Programming Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1014, + code: "CYI101", + name: "Chemistry", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1015, + code: "CYI102", + name: "Chemistry Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1016, + code: "ESI101", + name: "Environmental Sciences", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/ESI101.pdf", + credits: "2-0-0", + timetable: [["Wednesday", "05:00-05:50", "LC-II-G1"]], + semester: "WS", + }, + { + id: 1017, + code: "HSI101", + name: "Communication Skills", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/HSI101.pdf", + credits: "1-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1018, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1019, + code: "MEI102", + name: "Manufacturing Processes", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI102.pdf", + credits: "2-0-3", + timetable: [], + semester: "WS", + }, + { + id: 1020, + code: "CYI101", + name: "Chemistry", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1021, + code: "CYI102", + name: "Chemistry Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI102.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "10:00-10:50", "UG Lab"], + ["Monday", "09:00-09:50", "UG Lab"], + ], + semester: "WS", + }, + { + id: 1022, + code: "GLI101", + name: "Earth Sciences", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/GLI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1023, + code: "HSI101", + name: "Communication Skills", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/HSI101.pdf", + credits: "1-0-2", + timetable: [ + ["Tuesday", "12:00-12:50", "LC-II-G1"], + ["Tuesday", "11:00-11:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 1024, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1025, + code: "MCI103", + name: "Numerical Methods", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI103.pdf", + credits: "02-02-2000", + timetable: [], + semester: "WS", + }, + { + id: 1026, + code: "MEI102", + name: "Manufacturing Processes", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI102.pdf", + credits: "2-0-3", + timetable: [], + semester: "WS", + }, + { + id: 1027, + code: "CSI101", + name: "Computer Programming", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI101.pdf", + credits: "02-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1028, + code: "CSI102", + name: "Computer Programming Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1029, + code: "CYI101", + name: "Chemistry", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1030, + code: "CYI102", + name: "Chemistry Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1031, + code: "ESI101", + name: "Environmental Sciences", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/ESI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1032, + code: "HSI101", + name: "Communication Skills", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/HSI101.pdf", + credits: "1-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1033, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1034, + code: "MEI102", + name: "Manufacturing Processes", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI102.pdf", + credits: "2-0-3", + timetable: [], + semester: "WS", + }, + { + id: 1035, + code: "CYI101", + name: "Chemistry", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1036, + code: "CYI102", + name: "Chemistry Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI102.pdf", + credits: "0-0-2", + timetable: [ + ["Friday", "10:00-10:50", "UG Lab"], + ["Friday", "09:00-09:50", "UG Lab"], + ], + semester: "WS", + }, + { + id: 1037, + code: "GLI101", + name: "Earth Sciences", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/GLI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1038, + code: "HSI101", + name: "Communication Skills", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/HSI101.pdf", + credits: "1-0-2", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G1"], + ["Tuesday", "04:00-04:50", "LC-II-G1"], + ], + semester: "WS", + }, + { + id: 1039, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1040, + code: "MCI103", + name: "Numerical Methods", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI103.pdf", + credits: "02-02-2000", + timetable: [], + semester: "WS", + }, + { + id: 1041, + code: "MEI102", + name: "Manufacturing Processes", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI102.pdf", + credits: "2-0-3", + timetable: [], + semester: "WS", + }, + { + id: 1042, + code: "CSI101", + name: "Computer Programming", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI101.pdf", + credits: "02-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1043, + code: "CSI102", + name: "Computer Programming Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1044, + code: "CYI101", + name: "Chemistry", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1045, + code: "CYI102", + name: "Chemistry Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1046, + code: "ESI101", + name: "Environmental Sciences", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/ESI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1047, + code: "HSI101", + name: "Communication Skills", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/HSI101.pdf", + credits: "1-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1048, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1049, + code: "MEI102", + name: "Manufacturing Processes", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI102.pdf", + credits: "2-0-3", + timetable: [], + semester: "WS", + }, + { + id: 1050, + code: "CYI101", + name: "Chemistry", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI101.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "02:00-02:50", "LC-II-G8"], + ["Wednesday", "03:00-03:50", "LC-II-G8"], + ["Thursday", "04:00-04:50", "LC-II-G8"], + ], + semester: "WS", + }, + { + id: 1051, + code: "CYI102", + name: "Chemistry Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI102.pdf", + credits: "0-0-2", + timetable: [ + ["Thursday", "10:00-10:50", "UG Lab"], + ["Thursday", "09:00-09:50", "UG Lab"], + ], + semester: "WS", + }, + { + id: 1052, + code: "GLI101", + name: "Earth Sciences", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/GLI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1053, + code: "HSI101", + name: "Communication Skills", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/HSI101.pdf", + credits: "1-0-2", + timetable: [["Friday", "12:00-12:50", "LC-II-G1"]], + semester: "WS", + }, + { + id: 1054, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1055, + code: "MCI103", + name: "Numerical Methods", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI103.pdf", + credits: "02-02-2000", + timetable: [], + semester: "WS", + }, + { + id: 1056, + code: "MEI102", + name: "Manufacturing Processes", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI102.pdf", + credits: "2-0-3", + timetable: [["Monday", "03:00-03:50", "LC-II-G1"]], + semester: "WS", + }, + { + id: 1057, + code: "CSI101", + name: "Computer Programming", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI101.pdf", + credits: "02-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1058, + code: "CSI102", + name: "Computer Programming Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CSI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1059, + code: "CYI101", + name: "Chemistry", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI101.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1060, + code: "CYI102", + name: "Chemistry Lab", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/CYI102.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1061, + code: "ESI101", + name: "Environmental Sciences", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/ESI101.pdf", + credits: "2-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1062, + code: "HSI101", + name: "Communication Skills", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/HSI101.pdf", + credits: "1-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1063, + code: "MCI102", + name: "Mathematics - II", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MCI102.pdf", + credits: "03-01-2000", + timetable: [], + semester: "WS", + }, + { + id: 1064, + code: "MEI102", + name: "Manufacturing Processes", + instructor: "n/a", + department: "Common Courses", + type: "Institute Core (IC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/comm/MEI102.pdf", + credits: "2-0-3", + timetable: [], + semester: "WS", + }, + { + id: 1065, + code: "GLC591", + name: "Research Methodology", + instructor: "n/a", + department: "Applied Geology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLC591.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "AGL-1"], + ["Wednesday", "04:00-04:50", "AGL-1"], + ["Friday", "04:00-04:50", "AGL-1"], + ], + semester: "WS", + }, + { + id: 1066, + code: "GLD501", + name: "Essentials of Mineral Geostatistics", + instructor: "n/a", + department: "Applied Geology", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agl/GLD501.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1067, + code: "GPC555", + name: "Research Methodology and Statistics", + instructor: "n/a", + department: "Applied Geophysics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/agp/GPC555.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1068, + code: "CYC540", + name: "Research Methodology and Statistics", + instructor: "n/a", + department: "Chemistry and Chemical Biology", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ccb/CYC540.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1069, + code: "CHC518", + name: "Research Methodology", + instructor: "n/a", + department: "Chemical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ce/CHC518.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "CHE-402"], + ["Wednesday", "06:00-06:50", "CHE-402"], + ["Friday", "06:00-06:50", "CHE-402"], + ], + semester: "WS", + }, + { + id: 1070, + code: "CSC516", + name: "Research Methodology", + instructor: "n/a", + department: "Computer Science and Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cse/CSC516.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1071, + code: "CEC502", + name: "Research Methodology and Statistics", + instructor: "n/a", + department: "Civil Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/cve/CEC502.pdf", + credits: "3-0-0", + timetable: [["Monday", "02:00-02:50", "CECR3"]], + semester: "WS", + }, + { + id: 1072, + code: "ECC581", + name: "Research Methodology", + instructor: "n/a", + department: "Electronics Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ece/ECC581.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-C16"], + ["Wednesday", "06:00-06:50", "LC-II-C16"], + ["Friday", "06:00-06:50", "LC-II-C16"], + ], + semester: "WS", + }, + { + id: 1073, + code: "EEC550", + name: "Research Methodology and Statistics for Electrical Engineering", + instructor: "n/a", + department: "Electrical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ee/EEC550.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "02:00-02:50", "Conference Room"], + ["Wednesday", "04:00-04:50", "Conference Room"], + ["Friday", "04:00-04:50", "Conference Room"], + ], + semester: "WS", + }, + { + id: 1074, + code: "ESC526", + name: "Research Methodology", + instructor: "n/a", + department: "Environmental Science & Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/ese/ESC526.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "FME-1"], + ["Wednesday", "06:00-06:50", "FME-1"], + ["Friday", "06:00-06:50", "FME-1"], + ], + semester: "WS", + }, + { + id: 1075, + code: "HSD507", + name: "Introduction to Drama, Theatre and Performance Studies", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSD507.pdf", + credits: "3-0-0", + timetable: [ + ["Tuesday", "05:00-05:50", "PET 1"], + ["Wednesday", "05:00-05:50", "PET 1"], + ], + semester: "WS", + }, + { + id: 1076, + code: "HSD521", + name: "Vedanta Philosophy", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSD521.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1077, + code: "HSD551", + name: "Psychological Data Science", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSD551.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1078, + code: "MCC500", + name: "Research Methodology", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC500.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1079, + code: "MCC500", + name: "Research Methodology", + instructor: "n/a", + department: "Mathematics and Computing", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mc/MCC500.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1080, + code: "MEC591", + name: "Research Methodology and Statistics", + instructor: "n/a", + department: "Mechanical Engineering", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/mech/MEC591.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "Mech G1"], + ["Wednesday", "06:00-06:50", "Mech G1"], + ["Friday", "06:00-06:50", "Mech G1"], + ], + semester: "WS", + }, + { + id: 1081, + code: "PHC571", + name: "Research Methodology and Statistics", + instructor: "n/a", + department: "Physics", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/phy/PHC571.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "06:00-06:50", "LC-II-C10"], + ["Wednesday", "06:00-06:50", "LC-II-C10"], + ["Friday", "06:00-06:50", "LC-II-C10"], + ], + semester: "WS", + }, + { + id: 1082, + code: "HSC507", + name: "Textual Analysis", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC507.pdf", + credits: "3-0-0", + timetable: [["Monday", "09:00-09:50", " "]], + semester: "WS", + }, + { + id: 1083, + code: "HSC516", + name: "Quantitative Techniques Lab", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC516.pdf", + credits: "0-0-2", + timetable: [ + ["Monday", "05:00-05:50", "HSS class room -2"], + ["Monday", "04:00-04:50", "HSS class room -2"], + ], + semester: "WS", + }, + { + id: 1084, + code: "HSC520", + name: "Introduction to Digital Humanities", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC520.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1085, + code: "HSC521", + name: "Data Science Fundamentals", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC521.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1086, + code: "HSC527", + name: "Digital Ethics", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC527.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1087, + code: "HSC532", + name: "Social Research Lab", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Compulsory (DC)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSC532.pdf", + credits: "0-0-2", + timetable: [], + semester: "WS", + }, + { + id: 1088, + code: "HSD554", + name: "Mixed Method Research", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Department Elective (DE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSD554.pdf", + credits: "3-0-0", + timetable: [], + semester: "WS", + }, + { + id: 1089, + code: "HSO508", + name: "Digital Society", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSO508.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "LC-II-G11"], + ["Wednesday", "12:00-12:50", "LC-II-G11"], + ["Friday", "12:00-12:50", "LC-II-G11"], + ], + semester: "WS", + }, + { + id: 1090, + code: "HSO513", + name: "Environment, Development and Politics", + instructor: "n/a", + department: "Humanities and Social Sciences", + type: "Open Elective (OE)", + link: "https://people.iitism.ac.in/~academics/assets/course_structure/new/cat/hss/HSO513.pdf", + credits: "3-0-0", + timetable: [ + ["Monday", "12:00-12:50", "NAC Hall"], + ["Wednesday", "12:00-12:50", "NAC Hall"], + ["Friday", "12:00-12:50", "NAC Hall"], + ], + semester: "WS", + }, +]; + +export default data; diff --git a/New_APIs/IIT-ism-subjects-api/assets/course_names.js b/New_APIs/IIT-ism-subjects-api/assets/course_names.js new file mode 100644 index 0000000..3c72314 --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/assets/course_names.js @@ -0,0 +1,4368 @@ +const courses = [ + { + id: 0, + name: "MS CHD401 - Petrochemical Technology", + }, + { + id: 1, + name: "MS CHD408 - Process Data Analytics", + }, + { + id: 2, + name: "MS CHD411 - Catalytic Reaction Engineering", + }, + { + id: 3, + name: "MS CHO401 - Process Integration", + }, + { + id: 4, + name: "MS CHO402 - Biofuels & Biomass Conversion Technology", + }, + { + id: 5, + name: "MS CSD404 - Computer Graphics", + }, + { + id: 6, + name: "MS CSD411 - Introduction to Deep Learning", + }, + { + id: 7, + name: "MS CSD511 - Information Theory and Coding", + }, + { + id: 8, + name: "MS CSD520 - VLSI Design and Testing", + }, + { + id: 9, + name: "MS CSO404 - Cryptography", + }, + { + id: 10, + name: "MS CSO504 - Machine Learning", + }, + { + id: 11, + name: "MS CSO505 - Soft Computing", + }, + { + id: 12, + name: "MS CED401 - Traffic Engineering and Management", + }, + { + id: 13, + name: "MS CED403 - Advanced Hydrology", + }, + { + id: 14, + name: "MS CED501 - Computational Solid Mechanics", + }, + { + id: 15, + name: "MS CED531 - Advanced Design of Structures", + }, + { + id: 16, + name: "MS CEO528 - Ground Improvement and Geosynthetics", + }, + { + id: 17, + name: "MS ECD403 - Computer Networks", + }, + { + id: 18, + name: "MS ECD405 - Digital Systems Design using HDL", + }, + { + id: 19, + name: "MS ECD415 - Optical Communication", + }, + { + id: 20, + name: "MS ECO501 - Internet of Things", + }, + { + id: 21, + name: "MS ECO561 - Embedded System Design", + }, + { + id: 22, + name: "MS EED401 - Power System Protection and Switchgear", + }, + { + id: 23, + name: "MS EED403 - Industrial Power Electronics", + }, + { + id: 24, + name: "MS EEO403 - Digital Signal Processing", + }, + { + id: 25, + name: "MS EEO404 - Renewable Energy Systems and Energy Audit", + }, + { + id: 26, + name: "MS EEO405 - Industrial Automation", + }, + { + id: 27, + name: "MS ESD401 - Biodiversity Conservation", + }, + { + id: 28, + name: "MS ESD405 - Climate Vulnerability and Risk Analysis", + }, + { + id: 29, + name: "MS ESD502 - Environmental Biotechnology", + }, + { + id: 30, + name: "MS ESD511 - Aerosols in the Atmosphere", + }, + { + id: 31, + name: "MS ESO405 - Cleaner Energy", + }, + { + id: 32, + name: "MS FMD403 - Engineering Materials Selection and Design", + }, + { + id: 33, + name: "MS FMD461 - Computational Techniques and Modelling", + }, + { + id: 34, + name: "MS FMD515 - Thermochemical Conversion of Coal and Biomass", + }, + { + id: 35, + name: "MS FMO545 - Equipment Design", + }, + { + id: 36, + name: "MS FMO547 - Additive Manufacturing", + }, + { + id: 37, + name: "MS MND400 - Rock Excavation Engineering", + }, + { + id: 38, + name: "MS MND401 - Advanced Mine Ventilation", + }, + { + id: 39, + name: "MS MND402 - Open Pit Slope Analysis and Design", + }, + { + id: 40, + name: "MS MND403 - Geospatial Technology in Mining", + }, + { + id: 41, + name: "MS MND405 - Mine Safety Engineering", + }, + { + id: 42, + name: "MS MND406 - Mine Environmental Engineering", + }, + { + id: 43, + name: "MS MSO401 - Principles of Economics", + }, + { + id: 44, + name: "MS MSO402 - Introduction to Financial Management", + }, + { + id: 45, + name: "MS MSO403 - Foundations of Management and Organizational Behaviour", + }, + { + id: 46, + name: "MS HSD405 - Introduction to Environmental Humanities", + }, + { + id: 47, + name: "MS HSD525 - Advance Course in Applied Ethics", + }, + { + id: 48, + name: "MS HSO309 - Fundamental of Sociology", + }, + { + id: 49, + name: "MS HSO402 - Computational Psychology", + }, + { + id: 50, + name: "MS HSO403 - Indian Society and Culture", + }, + { + id: 51, + name: "MS HSO404 - Sociology of Health", + }, + { + id: 52, + name: "MS MED539 - Fundamentals of Aerodynamics", + }, + { + id: 53, + name: "MS MED540 - Fundamentals of Aeroacoustics", + }, + { + id: 54, + name: "MS MEO528 - Robotics", + }, + { + id: 55, + name: "MS MEO579 - Computational Fluid Dynamics", + }, + { + id: 56, + name: "MS MED401 - Energy Conversion Equipment", + }, + { + id: 57, + name: "MS MED549 - Cryogenic Engineering", + }, + { + id: 58, + name: "MS MEO534 - Automation and Control", + }, + { + id: 59, + name: "MS MMO504 - Advanced Fluid Power Systems and Control", + }, + { + id: 60, + name: "MS PED401 - Offshore Drilling and Petroleum Production Practices", + }, + { + id: 61, + name: "MS PED402 - Enhanced Oil Recovery Techniques", + }, + { + id: 62, + name: "MS PEO401 - Petroleum Environment, Health and Safety Practices", + }, + { + id: 63, + name: "MS PEO402 - Well Performance", + }, + { + id: 64, + name: "MS PEO406 - Reservoir Geomechanics", + }, + { + id: 65, + name: "MS PHD501 - Advanced Quantum Mechanics", + }, + { + id: 66, + name: "MS PHD506 - Characterization Techniques", + }, + { + id: 67, + name: "MS PHD577 - Numerical Methods and Simulation", + }, + { + id: 68, + name: "MS PHO400 - Nanoelectronics and Nanophotonics", + }, + { + id: 69, + name: "MS PHO504 - Optoelectronic Materials and Devices", + }, + { + id: 70, + name: "MS GLC201 - Crystallography and Mineralogy", + }, + { + id: 71, + name: "MS GLC202 - Physical and Structural Geology", + }, + { + id: 72, + name: "MS GLC203 - Crystallography and Optical Mineralogy Practical", + }, + { + id: 73, + name: "MS GLC204 - Structural Geology Practical", + }, + { + id: 74, + name: "MS GLE201 - Geology for Engineering and Sciences", + }, + { + id: 75, + name: "MS GPC501 - Solid Earth Geophysics", + }, + { + id: 76, + name: "MS GLC202 - Physical and Structural Geology", + }, + { + id: 77, + name: "MS GLE203 - Geology for Engineering and Sciences Practical", + }, + { + id: 78, + name: "MS GPC201 - Introduction to Rock Physics", + }, + { + id: 79, + name: "MS GPC202 - Self-Potential Method: Theory and Application", + }, + { + id: 80, + name: "MS GPC203 - Lab on Rock Physics", + }, + { + id: 81, + name: "MS GPC204 - Self-Potential Method Theory & Application Practical", + }, + { + id: 82, + name: "MS GPE202 - Geophysical Prospecting", + }, + { + id: 83, + name: "MS MCC201 - Modern Algebra", + }, + { + id: 84, + name: "MS MCC202 - Computer Organization and Architecture", + }, + { + id: 85, + name: "MS MCC203 - Real Analysis", + }, + { + id: 86, + name: "MS MCC204 - Computer Organization and Architecture Practical", + }, + { + id: 87, + name: "MS MCC505 - Probability & Statistics", + }, + { + id: 88, + name: "MS GLC502 - Applied Geochemistry", + }, + { + id: 89, + name: "MS GLC503 - Methods of Structural Geology", + }, + { + id: 90, + name: "MS GLC504 - Micropaleontology and Vertebrate Palaeontology", + }, + { + id: 91, + name: "MS GLC506 - Mineralogy and Geochemistry Practical", + }, + { + id: 92, + name: "MS GLC507 - Methods of Structural Geology Practical", + }, + { + id: 93, + name: "MS GLC508 - Micropaleontology and Vertebrate Paleontology Practical", + }, + { + id: 94, + name: "MS GLO532 - Environmental Geology", + }, + { + id: 95, + name: "MS GPC501 - Solid Earth Geophysics", + }, + { + id: 96, + name: "MS GPC502 - Gravity Method", + }, + { + id: 97, + name: "MS GPC504 - Mathematical Functional Analysis", + }, + { + id: 98, + name: "MS GPC505 - Gravity Method Practical", + }, + { + id: 99, + name: "MS GPC507 - Mathematical Functional Analysis Practical", + }, + { + id: 100, + name: "MS GPE202 - Geophysical Prospecting", + }, + { + id: 101, + name: "MS GPE203 - Geophysical Prospecting Practical", + }, + { + id: 102, + name: "MS MCC301 - Number Theory and Cryptography", + }, + { + id: 103, + name: "MS MCC302 - GPU Computing Practical", + }, + { + id: 104, + name: "MS MCC502 - Differential Equations", + }, + { + id: 105, + name: "MS MCD541 - GPU Computing", + }, + { + id: 106, + name: "MS MCO403 - Graph Algorithms", + }, + { + id: 107, + name: "MS GLC518 - Principles and Applications of Geostatistics", + }, + { + id: 108, + name: "MS GLC519 - Engineering Geology", + }, + { + id: 109, + name: "MS GLC520 - Hydrogeology", + }, + { + id: 110, + name: "MS GLC524 - Principles and Applications of Geostatistics Practical", + }, + { + id: 111, + name: "MS GLC525 - Engineering Geology and Hydrogeology Practical", + }, + { + id: 112, + name: "MS GLD521 - Stratigraphy", + }, + { + id: 113, + name: "MS GLD522 - Coalbed Methane, Shale Gas and Gas Hydrate Exploration", + }, + { + id: 114, + name: "MS GLO523 - Atmosphere, Ocean and Climate Dynamics", + }, + { + id: 115, + name: "MS GPC516 - Geophysical Inversion", + }, + { + id: 116, + name: "MS GPC517 - Seismic Data Processing and Interpretation", + }, + { + id: 117, + name: "MS GPC518 - Geophysical Inversion Practical", + }, + { + id: 118, + name: "MS GPC519 - Seismic Data Processing and Interpretation Practical", + }, + { + id: 119, + name: "MS GPD501 - Geothermics and Geodynamics", + }, + { + id: 120, + name: "MS GPD502 - Formation Evaluation", + }, + { + id: 121, + name: "MS GPD503 - Image Processing and Geographic Information System", + }, + { + id: 122, + name: "MS GPO501 - Groundwater Geophysics", + }, + { + id: 123, + name: "MS MCC503 - Numerical Methods", + }, + { + id: 124, + name: "MS MCC506 - Numerical Methods Practical", + }, + { + id: 125, + name: "MS MCD531 - Cryptography", + }, + { + id: 126, + name: "MS MCD557 - Finite Field Theory", + }, + { + id: 127, + name: "MS MCO401 - Partial Differential Equations", + }, + { + id: 128, + name: "MS MCO502 - Optimization Techniques", + }, + { + id: 129, + name: "MS CYC514 - Photochemistry & Pericyclic Reactions", + }, + { + id: 130, + name: "MS CYC515 - Molecular Spectroscopy", + }, + { + id: 131, + name: "MS CYC516 - Strategies in Organic Synthesis", + }, + { + id: 132, + name: "MS CYC517 - Physical Chemistry Lab - II", + }, + { + id: 133, + name: "MS CYC518 - Analytical Chemistry Lab", + }, + { + id: 134, + name: "MS CYD512 - Modern Aspects of Catalysis and Surface Science", + }, + { + id: 135, + name: "MS CYD515 - Advances in Nonconventional Energy Systems", + }, + { + id: 136, + name: "MS CYD522 - Advanced Biocatalysis", + }, + { + id: 137, + name: "MS CYD532 - Solid State Materials: Chemistry & Engineering", + }, + { + id: 138, + name: "MS CYD534 - Heterocyclic Chemistry", + }, + { + id: 139, + name: "MS CYD536 - Science of Corrosion & Corrosion Control", + }, + { + id: 140, + name: "MS MCC514 - Functional Analysis", + }, + { + id: 141, + name: "MS MCC515 - Topology", + }, + { + id: 142, + name: "MS MCC516 - Computational Fluid Dynamics", + }, + { + id: 143, + name: "MS MCC517 - Design and Analysis of Algorithms", + }, + { + id: 144, + name: "MS MCC518 - Computational Fluid Dynamics Practical", + }, + { + id: 145, + name: "MS MCC519 - Design and Analysis of Algorithms Practical", + }, + { + id: 146, + name: "MS MCD533 - Numerical Optimization", + }, + { + id: 147, + name: "MS PHC514 - Statistical Mechanics", + }, + { + id: 148, + name: "MS PHC515 - Laser Physics and Technology", + }, + { + id: 149, + name: "MS PHC516 - Nuclear and Particle Physics", + }, + { + id: 150, + name: "MS PHC517 - Computation and Simulation", + }, + { + id: 151, + name: "MS PHC518 - Experimental Physics - V", + }, + { + id: 152, + name: "MS PHD509 - Advanced Condensed Matter Physics", + }, + { + id: 153, + name: "MS PHD510 - Quantum Computation and Information", + }, + { + id: 154, + name: "MS PHD575 - Theoretical Physics", + }, + { + id: 155, + name: "MS PHD576 - Experimental Physics", + }, + { + id: 156, + name: "MS GLC518 - Principles and Applications of Geostatistics", + }, + { + id: 157, + name: "MS GLC519 - Engineering Geology", + }, + { + id: 158, + name: "MS GLC520 - Hydrogeology", + }, + { + id: 159, + name: "MS GLC524 - Principles and Applications of Geostatistics Practical", + }, + { + id: 160, + name: "MS GLC525 - Engineering Geology and Hydrogeology Practical", + }, + { + id: 161, + name: "MS GLD576 - Nanotechnology in Mineral and Hydrocarbon Exploration", + }, + { + id: 162, + name: "MS GLD591 - Rock Slope Engineering", + }, + { + id: 163, + name: "MS GPC516 - Geophysical Inversion", + }, + { + id: 164, + name: "MS GPC517 - Seismic Data Processing and Interpretation", + }, + { + id: 165, + name: "MS GPC518 - Geophysical Inversion Practical", + }, + { + id: 166, + name: "MS GPC519 - Seismic Data Processing and Interpretation Practical", + }, + { + id: 167, + name: "MS GLC591 - Research Methodology", + }, + { + id: 168, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 169, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 170, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 171, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 172, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 173, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 174, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 175, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 176, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 177, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 178, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 179, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 180, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 181, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 182, + name: "MS EEC550 - Research Methodology and Statistics for Electrical Engineering", + }, + { + id: 183, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 184, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 185, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 186, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 187, + name: "MS FMC511 - Research Methodology", + }, + { + id: 188, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 189, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 190, + name: "MS HSC501 - Research Methodology", + }, + { + id: 191, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 192, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 193, + name: "MS HSC501 - Research Methodology", + }, + { + id: 194, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 195, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 196, + name: "MS HSC501 - Research Methodology", + }, + { + id: 197, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 198, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 199, + name: "MS HSC501 - Research Methodology", + }, + { + id: 200, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 201, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 202, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 203, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 204, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 205, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 206, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 207, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 208, + name: "MS MNC700 - Research Methodology", + }, + { + id: 209, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 210, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 211, + name: "MS MEC591 - Research Methodology and Statistics", + }, + { + id: 212, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 213, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 214, + name: "MS MEC591 - Research Methodology and Statistics", + }, + { + id: 215, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 216, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 217, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 218, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 219, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 220, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 221, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 222, + name: "MS HSI500 - Research and Technical Communication", + }, + { + id: 223, + name: "MS MSD501 - Entrepreneurship and New Ventures", + }, + { + id: 224, + name: "MS MSD502 - Financial Analytics", + }, + { + id: 225, + name: "MS MSD503 - Sales and Distribution Management", + }, + { + id: 226, + name: "MS MSD505 - Materials Management", + }, + { + id: 227, + name: "MS MSD506 - Investment Analysis and Portfolio Management", + }, + { + id: 228, + name: "MS MSD507 - Management of Banks and Financial Institutions", + }, + { + id: 229, + name: "MS MSD508 - Advertising and Promotion Management", + }, + { + id: 230, + name: "MS MSD510 - Personnel Management and Industrial Relations", + }, + { + id: 231, + name: "MS MSD511 - Human Resources Development", + }, + { + id: 232, + name: "MS MSD512 - Service Operations Management", + }, + { + id: 233, + name: "MS MSD513 - Managerial Psychology", + }, + { + id: 234, + name: "MS MSD516 - Organisational Development and Change", + }, + { + id: 235, + name: "MS MSD517 - Strategic Management", + }, + { + id: 236, + name: "MS MSD530 - Supply Chain Management and Logistics", + }, + { + id: 237, + name: "MS MSD532 - Computational Finance", + }, + { + id: 238, + name: "MS MSD533 - Marketing Research", + }, + { + id: 239, + name: "MS MSD535 - Internet of Things and Blockchain for Business", + }, + { + id: 240, + name: "MS HSC519 - Privacy, Morality & Law", + }, + { + id: 241, + name: "MS HSC526 - The Psychology of the Internet", + }, + { + id: 242, + name: "MS HSC528 - Theorizing Digital Transformation", + }, + { + id: 243, + name: "MS HSC529 - Natural Language Processing Lab", + }, + { + id: 244, + name: "MS HSD507 - Introduction to Drama, Theatre and Performance Studies", + }, + { + id: 245, + name: "MS HSD559 - Analytical Philosophy", + }, + { + id: 246, + name: "MS CHC201 - Chemical Process Calculations", + }, + { + id: 247, + name: "MS CHC202 - Fluid and Particle Mechanics", + }, + { + id: 248, + name: "MS CHC203 - Heat Transfer", + }, + { + id: 249, + name: "MS CHC204 - Computational Tools for Chemical Engineers Lab", + }, + { + id: 250, + name: "MS CHC205 - Fluid and Particle Mechanics Lab", + }, + { + id: 251, + name: "MS CHE201 - Engineering Thermodynamics", + }, + { + id: 252, + name: "MS CSC201 - Data Structures", + }, + { + id: 253, + name: "MS CSC202 - Discrete Mathematics", + }, + { + id: 254, + name: "MS CSC203 - Computer Organization", + }, + { + id: 255, + name: "MS CSC204 - Data Structures Lab", + }, + { + id: 256, + name: "MS CSC205 - Computer Organization Lab", + }, + { + id: 257, + name: "MS CSE201 - Data Structures and Algorithms", + }, + { + id: 258, + name: "MS CEC201 - Surveying", + }, + { + id: 259, + name: "MS CEC202 - Environmental Engineering", + }, + { + id: 260, + name: "MS CEC203 - Building Materials, Construction and Management", + }, + { + id: 261, + name: "MS CEC204 - Material Testing Laboratory", + }, + { + id: 262, + name: "MS CEC205 - Environmental Engineering Laboratory", + }, + { + id: 263, + name: "MS CEE201 - Mechanics of Solid", + }, + { + id: 264, + name: "MS ECC201 - Electronic Devices", + }, + { + id: 265, + name: "MS ECC202 - Signals & Networks", + }, + { + id: 266, + name: "MS ECC203 - Digital Circuits and System Design", + }, + { + id: 267, + name: "MS ECC204 - Digital System Design Lab", + }, + { + id: 268, + name: "MS ECC205 - Signals & Networks Lab", + }, + { + id: 269, + name: "MS ECE301 - Analog Interface Electronics", + }, + { + id: 270, + name: "MS EEC201 - Signals, Systems and Networks", + }, + { + id: 271, + name: "MS EEC202 - Analog and Digital Electronics", + }, + { + id: 272, + name: "MS EEC203 - Electromagnetic Theory and Applications", + }, + { + id: 273, + name: "MS EEC271 - Networks Lab", + }, + { + id: 274, + name: "MS EEC272 - Analog and Digital Electronics Lab", + }, + { + id: 275, + name: "MS EEE202 - Utilization of Electrical Energy", + }, + { + id: 276, + name: "MS ESC201 - Drinking Water Supply and Treatment", + }, + { + id: 277, + name: "MS ESC202 - Air Pollution", + }, + { + id: 278, + name: "MS ESC203 - Noise Pollution and Control", + }, + { + id: 279, + name: "MS ESC251 - Water Pollution Practical", + }, + { + id: 280, + name: "MS ESC252 - Air and Noise Pollution Practical", + }, + { + id: 281, + name: "MS ESE201 - Pollution Control and Management", + }, + { + id: 282, + name: "MS FMC201 - Colloids and Interfacial Phenomena", + }, + { + id: 283, + name: "MS FMC202 - Heat and Mass Transfer", + }, + { + id: 284, + name: "MS FMC203 - Physical Separation Processes for Coal and Minerals", + }, + { + id: 285, + name: "MS FMC251 - Particle Technology Laboratory", + }, + { + id: 286, + name: "MS FMC252 - Physical Separation Processes Laboratory", + }, + { + id: 287, + name: "MS FME221 - Particle Technology", + }, + { + id: 288, + name: "MS GLE203 - Geology for Engineering and Sciences Practical", + }, + { + id: 289, + name: "MS MNC200 - Elements of Mining", + }, + { + id: 290, + name: "MS MNC201 - Rock Breakage", + }, + { + id: 291, + name: "MS MNC202 - Mine Surveying", + }, + { + id: 292, + name: "MS MNC203 - Mine Surveying Practical", + }, + { + id: 293, + name: "MS MNC204 - Rock Breakage Practical", + }, + { + id: 294, + name: "MS MNE201 - Introduction to Mining", + }, + { + id: 295, + name: "MS MEC201 - Kinematics of Machines", + }, + { + id: 296, + name: "MS MEC202 - Fluid Mechanics", + }, + { + id: 297, + name: "MS MEC203 - Applied Thermodynamics", + }, + { + id: 298, + name: "MS MEC204 - Applied Mechanics Lab", + }, + { + id: 299, + name: "MS MEC205 - Thermodynamics and Fluid Mechanics Lab", + }, + { + id: 300, + name: "MS MEE201 - Engineering Materials", + }, + { + id: 301, + name: "MS MMC201 - Manufacturing Technology", + }, + { + id: 302, + name: "MS MMC202 - Theory of Machines", + }, + { + id: 303, + name: "MS MMC203 - Design of Machine Elements", + }, + { + id: 304, + name: "MS MMC204 - Thermodynamics and Fluid Mechanics Lab", + }, + { + id: 305, + name: "MS MMC205 - Solid Mechanics and Theory of Machines Lab", + }, + { + id: 306, + name: "MS MME202 - Mining Machinery", + }, + { + id: 307, + name: "MS GLE203 - Geology for Engineering and Sciences Practical", + }, + { + id: 308, + name: "MS PEC201 - Drilling Technology", + }, + { + id: 309, + name: "MS PEC202 - Elements of Reservoir Engineering", + }, + { + id: 310, + name: "MS PEC203 - Drilling Fluids and Cements", + }, + { + id: 311, + name: "MS PEC204 - Reservoir Engineering Practical", + }, + { + id: 312, + name: "MS PEC205 - Drilling Fluids and Cementing Practical", + }, + { + id: 313, + name: "MS PEE201 - Introduction to Petroleum Engineering", + }, + { + id: 314, + name: "MS PHC200 - Waves and Acoustics", + }, + { + id: 315, + name: "MS PHC201 - Classical Mechanics", + }, + { + id: 316, + name: "MS PHC202 - Mathematical Physics", + }, + { + id: 317, + name: "MS PHC203 - Mechanics Lab", + }, + { + id: 318, + name: "MS PHC204 - Waves and Acoustics Lab", + }, + { + id: 319, + name: "MS PHE200 - Biomedical Engineering", + }, + { + id: 320, + name: "MS CHC301 - Separation Processes", + }, + { + id: 321, + name: "MS CHC302 - Chemical Kinetics and Reaction Engineering", + }, + { + id: 322, + name: "MS CHC303 - Process Design and Economics", + }, + { + id: 323, + name: "MS CHC304 - Chemical Kinetics and Reaction Engineering Lab", + }, + { + id: 324, + name: "MS CHC305 - Mass Transfer Lab", + }, + { + id: 325, + name: "MS CHO404 - AI in Process Industries", + }, + { + id: 326, + name: "MS CSC301 - Database Management Systems", + }, + { + id: 327, + name: "MS CSC302 - Compiler Design", + }, + { + id: 328, + name: "MS CSC303 - Database Management Systems Lab", + }, + { + id: 329, + name: "MS CSC304 - Compiler Design Lab", + }, + { + id: 330, + name: "MS CSO303 - Artificial Intelligence", + }, + { + id: 331, + name: "MS CSO304 - Digital Image Processing", + }, + { + id: 332, + name: "MS CEC301 - Structural Analysis - II", + }, + { + id: 333, + name: "MS CEC302 - Foundation Engineering", + }, + { + id: 334, + name: "MS CEC303 - Structural Engineering Laboratory", + }, + { + id: 335, + name: "MS CEC304 - Geotechnical Engineering Laboratory", + }, + { + id: 336, + name: "MS CEO301 - Reliability and Risk Assessment", + }, + { + id: 337, + name: "MS CEO401 - Flow and Transport through Porous Media", + }, + { + id: 338, + name: "MS ECC301 - Principles of Communication Systems", + }, + { + id: 339, + name: "MS ECC302 - Digital Signal Processing", + }, + { + id: 340, + name: "MS ECC303 - VLSI Design", + }, + { + id: 341, + name: "MS ECC304 - Digital Signal Processing Lab", + }, + { + id: 342, + name: "MS ECC305 - Communication System Lab", + }, + { + id: 343, + name: "MS ECO302 - Power Electronics", + }, + { + id: 344, + name: "MS EEC308 - Electrical Machines - II", + }, + { + id: 345, + name: "MS EEC309 - Modern Control", + }, + { + id: 346, + name: "MS EEC310 - Power Electronics", + }, + { + id: 347, + name: "MS EEC375 - Microprocessor and Microcontrollers Lab", + }, + { + id: 348, + name: "MS EEC376 - Electrical Machines and Control Lab", + }, + { + id: 349, + name: "MS EED402 - High Voltage Engineering and Applications", + }, + { + id: 350, + name: "MS ESC308 - Environmental Geotechnology", + }, + { + id: 351, + name: "MS ESC309 - Wastewater Treatment", + }, + { + id: 352, + name: "MS ESC310 - Environmental Impact Assessment", + }, + { + id: 353, + name: "MS ESC355 - Environmental Geotechnology Practical", + }, + { + id: 354, + name: "MS ESC356 - Wastewater Engineering Practical", + }, + { + id: 355, + name: "MS ESO401 - Climate Change Impacts on Water Resources", + }, + { + id: 356, + name: "MS FMC301 - Coal and Mineral Process Equipment Selection", + }, + { + id: 357, + name: "MS FMC302 - Extractive Metallurgy", + }, + { + id: 358, + name: "MS FMC306 - Coal and Mineral Process Equipment Selection Laboratory", + }, + { + id: 359, + name: "MS FMC351 - Extractive Metallurgy Laboratory", + }, + { + id: 360, + name: "MS FMD401 - Powder Metallurgy", + }, + { + id: 361, + name: "MS FMD402 - Welding Metallurgy", + }, + { + id: 362, + name: "MS MNC300 - Surface Mining", + }, + { + id: 363, + name: "MS MNC301 - Mine Planning and Economics", + }, + { + id: 364, + name: "MS MNC302 - Computer Aided Mine Planning and Design", + }, + { + id: 365, + name: "MS MNC303 - Mine Ventilation Practical - II", + }, + { + id: 366, + name: "MS MNO301 - Modern Surveying Techniques", + }, + { + id: 367, + name: "MS MNO303 - Underground Construction Engineering", + }, + { + id: 368, + name: "MS MSO301 - Operations Research", + }, + { + id: 369, + name: "MS MSO404 - Introduction to Operations Management", + }, + { + id: 370, + name: "MS MEC301 - Machine Design", + }, + { + id: 371, + name: "MS MEC302 - Machining and Machine Tools", + }, + { + id: 372, + name: "MS MEC303 - Advanced Solid Mechanics", + }, + { + id: 373, + name: "MS MEC304 - Production Technology Lab", + }, + { + id: 374, + name: "MS MEC305 - Machine Design Lab", + }, + { + id: 375, + name: "MS MEO302 - Refrigeration and Air-conditioning", + }, + { + id: 376, + name: "MS MED403 - Power Plant", + }, + { + id: 377, + name: "MS MMC301 - Mineral Beneficiation Equipment", + }, + { + id: 378, + name: "MS MMC302 - Automation and Control in Mining Machineries", + }, + { + id: 379, + name: "MS MMC303 - Mine Electrical Technology Lab", + }, + { + id: 380, + name: "MS MMC304 - Automation and Control Lab", + }, + { + id: 381, + name: "MS MMO301 - Automobile Engineering", + }, + { + id: 382, + name: "MS PEC301 - Applied Petroleum Reservoir Engineering and Management", + }, + { + id: 383, + name: "MS PEC302 - Petroleum Production Operations", + }, + { + id: 384, + name: "MS PEC303 - Natural Gas Engineering", + }, + { + id: 385, + name: "MS PEC304 - Petroleum Production Engineering Practical", + }, + { + id: 386, + name: "MS PEC305 - Process Engineering Practical", + }, + { + id: 387, + name: "MS PEO404 - Petroleum Resource Management and Project Evaluation", + }, + { + id: 388, + name: "MS PHC300 - Thermal Physics Lab", + }, + { + id: 389, + name: "MS PHC301 - Electronics Lab", + }, + { + id: 390, + name: "MS PHC514 - Statistical Mechanics", + }, + { + id: 391, + name: "MS PHC515 - Laser Physics and Technology", + }, + { + id: 392, + name: "MS PHO300 - Sensors and Transducers", + }, + { + id: 393, + name: "MS PHO302 - Introduction to Astrophysics and Astronomy", + }, + { + id: 394, + name: "MS CSC504 - Computing Techniques and Mathematical Tools", + }, + { + id: 395, + name: "MS CSC507 - Computing Techniques and Mathematical Tools Lab", + }, + { + id: 396, + name: "WS CHC206 - Chemical Engineering Thermodynamics", + }, + { + id: 397, + name: "WS CHC207 - Principles of Mass Transfer", + }, + { + id: 398, + name: "WS CHC208 - Chemical Process Technology", + }, + { + id: 399, + name: "WS CHC209 - Process Dynamics and Control", + }, + { + id: 400, + name: "WS CHC210 - Heat Transfer Lab", + }, + { + id: 401, + name: "WS CHC211 - Process Control Lab", + }, + { + id: 402, + name: "WS CHE202 - Transport Phenomena", + }, + { + id: 403, + name: "WS CSC206 - Algorithm Design & Analysis", + }, + { + id: 404, + name: "WS CSC207 - Computer Architecture", + }, + { + id: 405, + name: "WS CSC208 - Theory of Computation", + }, + { + id: 406, + name: "WS CSC209 - Operating Systems", + }, + { + id: 407, + name: "WS CSC210 - Algorithm Design & Analysis Lab", + }, + { + id: 408, + name: "WS CSC211 - Operating Systems Lab", + }, + { + id: 409, + name: "WS CSE202 - Object Oriented Programming", + }, + { + id: 410, + name: "WS CEC206 - Structural Analysis - I", + }, + { + id: 411, + name: "WS CEC207 - Design of Concrete Structures", + }, + { + id: 412, + name: "WS CEC208 - Geotechnical Engineering", + }, + { + id: 413, + name: "WS CEC209 - Transportation Engineering", + }, + { + id: 414, + name: "WS CEC210 - Surveying Laboratory", + }, + { + id: 415, + name: "WS CEC211 - Transportation Engineering Laboratory", + }, + { + id: 416, + name: "WS CEE202 - Fluid Mechanics and Machines", + }, + { + id: 417, + name: "WS ECC206 - Analog Circuits", + }, + { + id: 418, + name: "WS ECC207 - Electromagnetic Theory", + }, + { + id: 419, + name: "WS ECC208 - Control Systems", + }, + { + id: 420, + name: "WS ECC209 - Microprocessors & Microcontrollers", + }, + { + id: 421, + name: "WS ECC210 - Electronic Devices and Circuits Lab", + }, + { + id: 422, + name: "WS ECC211 - Microprocessor & Microcontroller Lab", + }, + { + id: 423, + name: "WS ECE201 - Measurements and Instrumentations", + }, + { + id: 424, + name: "WS EEC204 - Electrical Machines - I", + }, + { + id: 425, + name: "WS EEC205 - Electrical Measurements", + }, + { + id: 426, + name: "WS EEC206 - Control System Engineering", + }, + { + id: 427, + name: "WS EEC207 - Power System Engineering", + }, + { + id: 428, + name: "WS EEC273 - Control and Measurement lab", + }, + { + id: 429, + name: "WS EEC274 - Electrical Machines and Power lab", + }, + { + id: 430, + name: "WS EEE201 - Applied Electrical Engineering", + }, + { + id: 431, + name: "WS ESC204 - Geology and Land use Planning", + }, + { + id: 432, + name: "WS ESC205 - Introduction Ecology and Environmental Microbiology", + }, + { + id: 433, + name: "WS ESC206 - Environmental Policy and Legislation", + }, + { + id: 434, + name: "WS ESC207 - Air Pollution Control", + }, + { + id: 435, + name: "WS ESC253 - Geology Practical", + }, + { + id: 436, + name: "WS ESC254 - Soil and Environmental Microbiology Practical", + }, + { + id: 437, + name: "WS ESE202 - Atmospheric Science and Climate Change", + }, + { + id: 438, + name: "WS FMC204 - Electrochemistry and Corrosion", + }, + { + id: 439, + name: "WS FMC205 - Thermodynamics and Kinetics", + }, + { + id: 440, + name: "WS FMC206 - Phase Transformation and Heat Treatment", + }, + { + id: 441, + name: "WS FMC207 - Fine Particle Processing for Coal and Minerals", + }, + { + id: 442, + name: "WS FMC253 - Fine Particle Processing Laboratory", + }, + { + id: 443, + name: "WS FMC254 - Introduction to Fuel Technology Laboratory", + }, + { + id: 444, + name: "WS FME222 - Introduction to Fuel Technology", + }, + { + id: 445, + name: "WS MNC205 - Rock Mechanics", + }, + { + id: 446, + name: "WS MNC206 - Mine Ventilation", + }, + { + id: 447, + name: "WS MNC207 - Underground Metal Mining", + }, + { + id: 448, + name: "WS MNC208 - Underground Coal Mining", + }, + { + id: 449, + name: "WS MNC209 - Rock Mechanics Practical", + }, + { + id: 450, + name: "WS MNC210 - Mine Ventilation practical - I", + }, + { + id: 451, + name: "WS MNE202 - Introductory Rock Mechanics", + }, + { + id: 452, + name: "WS MEC206 - Fluid Machines", + }, + { + id: 453, + name: "WS MEC207 - Dynamics of Machinery", + }, + { + id: 454, + name: "WS MEC208 - Heat and Mass Transfer", + }, + { + id: 455, + name: "WS MEC209 - Production Technology", + }, + { + id: 456, + name: "WS MEC210 - Heat Transfer and Fluid Machines Lab", + }, + { + id: 457, + name: "WS MEC211 - Machine Dynamics and Solid Modeling Lab", + }, + { + id: 458, + name: "WS MEE202 - Computer Aided Engineering Design", + }, + { + id: 459, + name: "WS MMC206 - Mine Electrical Technology", + }, + { + id: 460, + name: "WS MMC207 - Bulk Material Handling Equipment", + }, + { + id: 461, + name: "WS MMC208 - Design of Mining Equipment Components", + }, + { + id: 462, + name: "WS MMC209 - Hydraulics & Pneumatics", + }, + { + id: 463, + name: "WS MMC210 - Hydraulics & Pneumatics Lab", + }, + { + id: 464, + name: "WS MMC211 - Manufacturing Technology and Soft Computing Lab", + }, + { + id: 465, + name: "WS MME201 - IC Engines", + }, + { + id: 466, + name: "WS PEC206 - Elements of Petroleum Production Engineering", + }, + { + id: 467, + name: "WS PEC207 - Petroleum Formation Evaluation", + }, + { + id: 468, + name: "WS PEC208 - Reservoir Fluid Thermodynamics", + }, + { + id: 469, + name: "WS PEC209 - Petroleum Product Testing Practical", + }, + { + id: 470, + name: "WS PEC210 - Drilling Simulation Practical", + }, + { + id: 471, + name: "WS PEE202 - Petroleum Environmental Management", + }, + { + id: 472, + name: "WS PHC205 - Introduction to Quantum Mechanics", + }, + { + id: 473, + name: "WS PHC206 - Applied Optics", + }, + { + id: 474, + name: "WS PHC207 - Nuclear Science and Engineering", + }, + { + id: 475, + name: "WS PHC208 - Electrodynamics", + }, + { + id: 476, + name: "WS PHC209 - Optics Lab", + }, + { + id: 477, + name: "WS PHC210 - Electricity and Magnetism Lab", + }, + { + id: 478, + name: "WS PHE202 - Material Science and Engineering", + }, + { + id: 479, + name: "WS CHC306 - Chemical Process Equipment Design", + }, + { + id: 480, + name: "WS CHC307 - Process Modelling and Simulation", + }, + { + id: 481, + name: "WS CHC308 - Chemical Process Equipment Design Lab", + }, + { + id: 482, + name: "WS CHC309 - Process Simulation Lab", + }, + { + id: 483, + name: "WS CHD402 - Polymers Science and Engineering", + }, + { + id: 484, + name: "WS CHO301 - Petroleum Refining", + }, + { + id: 485, + name: "WS CHO302 - Industrial Safety and Hazards Management", + }, + { + id: 486, + name: "WS CSC305 - Computer Network", + }, + { + id: 487, + name: "WS CSC306 - Software Engineering", + }, + { + id: 488, + name: "WS CSC307 - Computer Networks Lab", + }, + { + id: 489, + name: "WS CSC308 - Software Engineering Lab", + }, + { + id: 490, + name: "WS CSO302 - Graph Theory", + }, + { + id: 491, + name: "WS CSO304 - Digital Image Processing", + }, + { + id: 492, + name: "WS CSO506 - Principles of Blockchain Technologies", + }, + { + id: 493, + name: "WS CEC305 - Design of Steel Structures", + }, + { + id: 494, + name: "WS CEC306 - Water Resources Engineering", + }, + { + id: 495, + name: "WS CEC307 - Structural Detailing Laboratory", + }, + { + id: 496, + name: "WS CEC308 - Water Resources Engineering Laboratory", + }, + { + id: 497, + name: "WS CEO303 - Construction Management", + }, + { + id: 498, + name: "WS CEO525 - Optimization Methods", + }, + { + id: 499, + name: "WS CEO527 - Bridge Engineering", + }, + { + id: 500, + name: "WS ECC306 - Digital Communication", + }, + { + id: 501, + name: "WS ECC307 - Microwave Engineering", + }, + { + id: 502, + name: "WS ECC308 - Digital Communication Lab", + }, + { + id: 503, + name: "WS ECC309 - Microwave Engineering Lab", + }, + { + id: 504, + name: "WS ECO301 - Microprocessor and its Application", + }, + { + id: 505, + name: "WS ECO302 - Power Electronics", + }, + { + id: 506, + name: "WS ECO402 - Optical Fiber Sensor", + }, + { + id: 507, + name: "WS EEC311 - Power System Analysis and Control", + }, + { + id: 508, + name: "WS EEC312 - Electrical Drives and Applications", + }, + { + id: 509, + name: "WS EEC377 - Power and Switchgear Lab", + }, + { + id: 510, + name: "WS EEC378 - Power Electronics and Drives lab", + }, + { + id: 511, + name: "WS EED505 - Power Electronics for Renewable Energy Systems", + }, + { + id: 512, + name: "WS EEO301 - Microprocessor & Microcontroller", + }, + { + id: 513, + name: "WS EEO302 - Industrial Utilization of Electrical Power", + }, + { + id: 514, + name: "WS ESC311 - Solid Waste Management", + }, + { + id: 515, + name: "WS ESC312 - Geoinformatics", + }, + { + id: 516, + name: "WS ESC357 - Solid Waste Management Practical", + }, + { + id: 517, + name: "WS ESC358 - Geoinformatics Practical", + }, + { + id: 518, + name: "WS ESD404 - Water Resource Planning and Management", + }, + { + id: 519, + name: "WS ESD508 - Social Impact Assessment and R&R", + }, + { + id: 520, + name: "WS ESD513 - Energy Auditing and Management", + }, + { + id: 521, + name: "WS ESO301 - Applied Statistics for Environmental Engineering", + }, + { + id: 522, + name: "WS FMC303 - Mechanical Metallurgy", + }, + { + id: 523, + name: "WS FMC304 - Coal and Mineral Processing Plant Design", + }, + { + id: 524, + name: "WS FMC305 - Coal and Mineral Processing Plant Design Laboratory", + }, + { + id: 525, + name: "WS FMC352 - Heat Treatment and Mechanical Metallurgy Laboratory", + }, + { + id: 526, + name: "WS FMD463 - Non Ferrous Extractive Metallurgy", + }, + { + id: 527, + name: "WS FMD464 - Mineral Policy and Economics", + }, + { + id: 528, + name: "WS FMO431 - Elements of Mineral Engineering", + }, + { + id: 529, + name: "WS HSD512 - Gender Studies", + }, + { + id: 530, + name: "WS HSD533 - Introduction to Yoga Philosophy", + }, + { + id: 531, + name: "WS HSO307 - Philosophy and Critical Thinking", + }, + { + id: 532, + name: "WS HSO308 - Social Psychology", + }, + { + id: 533, + name: "WS HSO320 - Principles of Sociology", + }, + { + id: 534, + name: "WS HSO511 - Brain and Behaviour", + }, + { + id: 535, + name: "WS HSO512 - Experience Psychology", + }, + { + id: 536, + name: "WS HSO514 - Introduction to Climate Change and Society", + }, + { + id: 537, + name: "WS MNC304 - Mine Legislation and Safety", + }, + { + id: 538, + name: "WS MNC305 - Mine Automation and Data Analytics", + }, + { + id: 539, + name: "WS MNC306 - Mine Data Analytics Practical", + }, + { + id: 540, + name: "WS MNC307 - Numerical Modelling/Remote Sensing & GIS Practical", + }, + { + id: 541, + name: "WS MNO302 - Seabed Mining and Asteroid Mining", + }, + { + id: 542, + name: "WS MNO304 - Coal Mine Methane Recovery and Utilization", + }, + { + id: 543, + name: "WS MNO401 - Rock Engineering", + }, + { + id: 544, + name: "WS MEC306 - Computer Aided Manufacturing", + }, + { + id: 545, + name: "WS MEC307 - IC Engines and Gas Turbines", + }, + { + id: 546, + name: "WS MEC308 - Computer Aided Manufacturing Lab", + }, + { + id: 547, + name: "WS MEC309 - Heat Power and Refrigeration Lab", + }, + { + id: 548, + name: "WS MED519 - Engineering Tribology", + }, + { + id: 549, + name: "WS MEO302 - Refrigeration and Air-conditioning", + }, + { + id: 550, + name: "WS MEO586 - Additive Manufacturing", + }, + { + id: 551, + name: "WS MED545 - Turbomachinery", + }, + { + id: 552, + name: "WS MEO581 - Fundamentals of Combustion", + }, + { + id: 553, + name: "WS MEO590 - Advanced Scientific Computing", + }, + { + id: 554, + name: "WS MMC305 - Underground Mining Equipment", + }, + { + id: 555, + name: "WS MMC306 - Opencast Mining Equipment", + }, + { + id: 556, + name: "WS MMC307 - Mining Machinery Lab", + }, + { + id: 557, + name: "WS MMC308 - Pumps Fans & Compressors Lab", + }, + { + id: 558, + name: "WS PEC306 - Directional Drilling", + }, + { + id: 559, + name: "WS PEC307 - Oil and Gas Well Testing", + }, + { + id: 560, + name: "WS PEC308 - Enhanced Oil Recovery Practical", + }, + { + id: 561, + name: "WS PEC309 - Reservoir Characterization Practical", + }, + { + id: 562, + name: "WS PEO301 - Heat and Mass Transfer in Petroleum Operations", + }, + { + id: 563, + name: "WS PEO302 - Oil & Gas Field Development and Planning", + }, + { + id: 564, + name: "WS PEO502 - Flow Assurance", + }, + { + id: 565, + name: "WS PHC302 - Solid State Physics", + }, + { + id: 566, + name: "WS PHC303 - Applied Optics Lab", + }, + { + id: 567, + name: "WS PHC304 - Spectroscopy Lab", + }, + { + id: 568, + name: "WS PHC510 - Atomic and Molecular Physics", + }, + { + id: 569, + name: "WS PHO401 - Introduction to Quantum Devices", + }, + { + id: 570, + name: "WS PHO403 - Energy Storage Technologies", + }, + { + id: 571, + name: "WS CHD404 - Bioprocess Technology", + }, + { + id: 572, + name: "WS CHD411 - Catalytic Reaction Engineering", + }, + { + id: 573, + name: "WS CHD417 - Membrane Science and Engineering", + }, + { + id: 574, + name: "WS CHO403 - Process Intensification", + }, + { + id: 575, + name: "WS CSD401 - Advanced Algorithms", + }, + { + id: 576, + name: "WS CSD403 - Combinatorics and Graph Theory", + }, + { + id: 577, + name: "WS CSD404 - Computer Graphics", + }, + { + id: 578, + name: "WS CSD405 - Evolutionary Computation", + }, + { + id: 579, + name: "WS CSD508 - Distributed Systems", + }, + { + id: 580, + name: "WS CSD510 - Information Retrieval", + }, + { + id: 581, + name: "WS CSD521 - Wireless Networks", + }, + { + id: 582, + name: "WS CSO505 - Soft Computing", + }, + { + id: 583, + name: "WS CED404 - Environmental Engineering - II", + }, + { + id: 584, + name: "WS CED529 - Advanced Foundation Engineering", + }, + { + id: 585, + name: "WS CED542 - Prestressed Concrete Structures", + }, + { + id: 586, + name: "WS CEO526 - Geoinformatics for Civil Engineering", + }, + { + id: 587, + name: "WS ECD404 - Digital Image Processing", + }, + { + id: 588, + name: "WS ECD419 - Satellite Communication", + }, + { + id: 589, + name: "WS ECO500 - Wireless Sensor Networks", + }, + { + id: 590, + name: "WS ECO506 - Machine Learning", + }, + { + id: 591, + name: "WS EED405 - Instrumentation", + }, + { + id: 592, + name: "WS EED406 - Special Purpose Electric Machines and Drives", + }, + { + id: 593, + name: "WS EED511 - Power System Dynamics", + }, + { + id: 594, + name: "WS EED513 - Power Quality", + }, + { + id: 595, + name: "WS EEO504 - Condition Monitoring of Electrical Machines", + }, + { + id: 596, + name: "WS EEO505 - Modern Sensors and Signal Conditioning Circuits", + }, + { + id: 597, + name: "WS ESD402 - Industrial Waste Water Engineering", + }, + { + id: 598, + name: "WS ESD406 - Environmental Nano Technology", + }, + { + id: 599, + name: "WS ESD503 - Environmental Modelling", + }, + { + id: 600, + name: "WS ESO505 - Climate Change and Modelling", + }, + { + id: 601, + name: "WS FMD462 - Process Control and Plant Layout", + }, + { + id: 602, + name: "WS FMD522 - Coal Preparation", + }, + { + id: 603, + name: "WS FMD530 - Biofuels", + }, + { + id: 604, + name: "WS FMD536 - Surface Engineering", + }, + { + id: 605, + name: "WS MND407 - Underground Space Technology", + }, + { + id: 606, + name: "WS MND408 - Innovative Mining Systems", + }, + { + id: 607, + name: "WS MND409 - Introduction to Geographical Information System", + }, + { + id: 608, + name: "WS MND410 - Advanced Blasting Techniques", + }, + { + id: 609, + name: "WS MND411 - Advanced Underground Mining Methods", + }, + { + id: 610, + name: "WS MND412 - Deep Coal Mining", + }, + { + id: 611, + name: "WS MED529 - Composite Materials", + }, + { + id: 612, + name: "WS MED531 - Fracture Mechanics", + }, + { + id: 613, + name: "WS MEO522 - Condition Monitoring of Machines", + }, + { + id: 614, + name: "WS MEO528 - Robotics", + }, + { + id: 615, + name: "WS MED521 - Theory of Lubrication", + }, + { + id: 616, + name: "WS MED541 - Microfluidics", + }, + { + id: 617, + name: "WS MED542 - Finite Element Method in Thermal Engineering", + }, + { + id: 618, + name: "WS MMO504 - Advanced Fluid Power Systems and Control", + }, + { + id: 619, + name: "WS PED404 - Petroleum Engineering Design", + }, + { + id: 620, + name: "WS PED405 - Pipeline Engineering", + }, + { + id: 621, + name: "WS PED406 - Reservoir Modeling and Simulation", + }, + { + id: 622, + name: "WS PED502 - Well Intervention, Workover and Stimulation Techniques", + }, + { + id: 623, + name: "WS PEO405 - Integrated Reservoir Management", + }, + { + id: 624, + name: "WS PEO506 - Carbon Capture And Sequestration", + }, + { + id: 625, + name: "WS PHD503 - High Energy Physics", + }, + { + id: 626, + name: "WS PHD511 - Astrophysics and Cosmology", + }, + { + id: 627, + name: "WS PHD512 - Nonlinear Optics", + }, + { + id: 628, + name: "WS PHD513 - Semiconductor Physics and Technology", + }, + { + id: 629, + name: "WS PHO303 - Physics for Society", + }, + { + id: 630, + name: "WS PHO503 - Physics of Nanomaterials", + }, + { + id: 631, + name: "WS GLC205 - Introduction to Petrology", + }, + { + id: 632, + name: "WS GLC206 - Introduction to Stratigraphy and Paleontology", + }, + { + id: 633, + name: "WS GLC207 - Descriptive Mineralogy", + }, + { + id: 634, + name: "WS GLC208 - Economic Geology and Indian Mineral Deposits", + }, + { + id: 635, + name: "WS GLC209 - Petrology Practical", + }, + { + id: 636, + name: "WS GLC210 - Economic Geology Practical", + }, + { + id: 637, + name: "WS GLE202 - Resource Geology", + }, + { + id: 638, + name: "WS GPC205 - Oceanography", + }, + { + id: 639, + name: "WS GPC206 - Mathematical Geophysics", + }, + { + id: 640, + name: "WS GPC207 - Radiometric Method", + }, + { + id: 641, + name: "WS GPC208 - Radiometric Method Practical", + }, + { + id: 642, + name: "WS GPE201 - Earth and Planetary System", + }, + { + id: 643, + name: "WS MCC205 - Linear Algebra", + }, + { + id: 644, + name: "WS MCC509 - Statistical Inference", + }, + { + id: 645, + name: "WS MCC510 - Operating Systems", + }, + { + id: 646, + name: "WS MCC512 - Operating Systems Practical", + }, + { + id: 647, + name: "WS MCE301 - Operations Research", + }, + { + id: 648, + name: "WS MCO501 - Discrete Mathematics", + }, + { + id: 649, + name: "WS GLC509 - Igneous Petrology", + }, + { + id: 650, + name: "WS GLC510 - Metamorphic Petrology", + }, + { + id: 651, + name: "WS GLC514 - Igneous and Metamorphic Petrology Practical", + }, + { + id: 652, + name: "WS GLC515 - Sedimentology and Petroleum Geology Practical", + }, + { + id: 653, + name: "WS GLD530 - Geodynamics", + }, + { + id: 654, + name: "WS GLD540 - Geomorphology", + }, + { + id: 655, + name: "WS GPC508 - Earthquake Seismology", + }, + { + id: 656, + name: "WS GPC509 - Geoelectrical Method", + }, + { + id: 657, + name: "WS GPC510 - Well Logging", + }, + { + id: 658, + name: "WS GPC511 - Seismic Data Acquisition", + }, + { + id: 659, + name: "WS GPC512 - Seismic Data Acquisition Practical", + }, + { + id: 660, + name: "WS GPC513 - Geoelectrical Methods Practical", + }, + { + id: 661, + name: "WS GPC515 - Earthquake Seismology and Well Logging Practical", + }, + { + id: 662, + name: "WS GPO503 - Artificial Intelligence and Machine Learning in Geosciences", + }, + { + id: 663, + name: "WS MCC511 - Database Management Systems", + }, + { + id: 664, + name: "WS MCC513 - Database Management Systems Practical", + }, + { + id: 665, + name: "WS MCD501 - Classical Mechanics", + }, + { + id: 666, + name: "WS MCD508 - Theory of Computation", + }, + { + id: 667, + name: "WS MCD511 - Mathematical Ecology", + }, + { + id: 668, + name: "WS MCD560 - Orbital Mechanics", + }, + { + id: 669, + name: "WS GLC513 - Coal Geology", + }, + { + id: 670, + name: "WS GLC516 - Coal Geology Practical", + }, + { + id: 671, + name: "WS GLC526 - Ore Geology", + }, + { + id: 672, + name: "WS GLC533 - Ore Geology Practical", + }, + { + id: 673, + name: "WS GLD528 - Geotechnical Engineering", + }, + { + id: 674, + name: "WS GLD571 - Petroleum Exploration and Micropalaeontology", + }, + { + id: 675, + name: "WS GLO545 - Radiogenic and Stable Isotope Geology", + }, + { + id: 676, + name: "WS GPC520 - Magnetic Method", + }, + { + id: 677, + name: "WS GPC521 - Geoelectromagnetic Method", + }, + { + id: 678, + name: "WS GPC522 - Magnetic Method Practical", + }, + { + id: 679, + name: "WS GPC523 - Geoelectromagnetic Method Practical", + }, + { + id: 680, + name: "WS GPD507 - Geophysics for Mineral Exploration", + }, + { + id: 681, + name: "WS GPD508 - Seismological Data Analysis", + }, + { + id: 682, + name: "WS MCC401 - Software Engineering", + }, + { + id: 683, + name: "WS MCC402 - Software Engineering Practical", + }, + { + id: 684, + name: "WS MCD502 - Graph Theory", + }, + { + id: 685, + name: "WS MCD510 - Complex Analysis", + }, + { + id: 686, + name: "WS MCD516 - Industrial Statistics", + }, + { + id: 687, + name: "WS MCO402 - Modelling and Simulation", + }, + { + id: 688, + name: "WS - ", + }, + { + id: 689, + name: "WS GPC537 - Remote Sensing: Principles and Data Acquisition System", + }, + { + id: 690, + name: "WS GPC538 - Advanced Numerical Methods", + }, + { + id: 691, + name: "WS GPC539 - Remote Sensing: Principles and Data Acquisition System Practical", + }, + { + id: 692, + name: "WS GPC540 - Advanced Numerical Methods Practical", + }, + { + id: 693, + name: "WS GPD520 - Earthquake Statistics and Hazard", + }, + { + id: 694, + name: "WS CHC530 - Reaction Engineering", + }, + { + id: 695, + name: "WS CHC531 - Chemical Engineering Lab", + }, + { + id: 696, + name: "WS CYC529 - Formulation/Manufacturing Lab", + }, + { + id: 697, + name: "WS CYD524 - Basics of Chemical Biology", + }, + { + id: 698, + name: "WS CYD529 - Computer Aided Drug Discovery", + }, + { + id: 699, + name: "WS CYD530 - Pharmacovigilance and Regulatory Affairs", + }, + { + id: 700, + name: "WS CYD531 - Biotechnology in Pharmaceutical Sciences", + }, + { + id: 701, + name: "WS CHC508 - Advanced Mass transfer", + }, + { + id: 702, + name: "WS CHC509 - Computational Fluid Dynamics", + }, + { + id: 703, + name: "WS CHC510 - Advanced Chemical Engineering Lab", + }, + { + id: 704, + name: "WS CHC511 - Term Paper and Presentation", + }, + { + id: 705, + name: "WS CHD504 - Process Optimization", + }, + { + id: 706, + name: "WS CHD505 - Interfacial and Colloidal Phenomena", + }, + { + id: 707, + name: "WS CHO501 - Rheology", + }, + { + id: 708, + name: "WS CHO503 - Introduction to Granular Mechanics", + }, + { + id: 709, + name: "WS CSC508 - Computing Lab - I", + }, + { + id: 710, + name: "WS CSC509 - Computing Lab - II", + }, + { + id: 711, + name: "WS CSD505 - Cryptography and Network Security", + }, + { + id: 712, + name: "WS CSD509 - Image and Video Processing", + }, + { + id: 713, + name: "WS CSD513 - Internet of Things", + }, + { + id: 714, + name: "WS CSD516 - Optimization Techniques", + }, + { + id: 715, + name: "WS CSD517 - Parallel Computing", + }, + { + id: 716, + name: "WS CSO501 - Principles of Artificial Intelligence", + }, + { + id: 717, + name: "WS CSO503 - Data Mining", + }, + { + id: 718, + name: "WS CSO507 - Deep Learning", + }, + { + id: 719, + name: "WS CSO508 - Building Software Systems", + }, + { + id: 720, + name: "WS CEC509 - Advanced Testing Laboratory", + }, + { + id: 721, + name: "WS CEC510 - Term Project", + }, + { + id: 722, + name: "WS CED528 - Structural Dynamics", + }, + { + id: 723, + name: "WS CED530 - Hydrogeology and Well Hydraulics", + }, + { + id: 724, + name: "WS CED532 - Slope and Retaining Structure", + }, + { + id: 725, + name: "WS CED533 - Hydroclimatology", + }, + { + id: 726, + name: "WS CED534 - Theory of Elastic Stability", + }, + { + id: 727, + name: "WS CED535 - Soil Dynamics", + }, + { + id: 728, + name: "WS CED537 - Earthquake Engineering", + }, + { + id: 729, + name: "WS CEO524 - Finite Element Method", + }, + { + id: 730, + name: "WS CEO531 - Railway Geotechnics", + }, + { + id: 731, + name: "WS ECC507 - Electronics Engineering - I Lab", + }, + { + id: 732, + name: "WS ECC508 - Electronics Engineering - II Lab", + }, + { + id: 733, + name: "WS ECD500 - Advanced Signal Processing", + }, + { + id: 734, + name: "WS ECD501 - Metamaterials and CRLH Transmission Lines", + }, + { + id: 735, + name: "WS ECD503 - Wireless Communication Systems", + }, + { + id: 736, + name: "WS ECD504 - Computer Communication Networks", + }, + { + id: 737, + name: "WS ECD505 - CAD for VLSI", + }, + { + id: 738, + name: "WS ECD514 - Photonic Sensors", + }, + { + id: 739, + name: "WS ECD520 - Optoelectronic and Photonics Devices", + }, + { + id: 740, + name: "WS ECD531 - Photonic Integrated Circuits", + }, + { + id: 741, + name: "WS ECD540 - Advanced Antenna Theory", + }, + { + id: 742, + name: "WS ECD541 - Microwave Measurements", + }, + { + id: 743, + name: "WS ECD560 - Analog IC Design", + }, + { + id: 744, + name: "WS ECD569 - MOS Device Physics and Modelling", + }, + { + id: 745, + name: "WS ECO520 - Optical Networks", + }, + { + id: 746, + name: "WS ECO560 - Test and Verification of VLSI Circuits", + }, + { + id: 747, + name: "WS EEC501 - Power System Analysis", + }, + { + id: 748, + name: "WS EEC508 - Power Electronic Converters", + }, + { + id: 749, + name: "WS EEC513 - Advanced power System Simulation Lab", + }, + { + id: 750, + name: "WS EEC514 - Advanced Power System Protection Lab", + }, + { + id: 751, + name: "WS EED504 - Wireless Power Transfer", + }, + { + id: 752, + name: "WS EEO501 - Smart Grid Technology", + }, + { + id: 753, + name: "WS EEO503 - Electric & Hybrid Electric Vehicles", + }, + { + id: 754, + name: "WS ESC506 - Environmental Laws and Impact Assessment", + }, + { + id: 755, + name: "WS ESC507 - Municipal Solid Waste Management", + }, + { + id: 756, + name: "WS ESC523 - Water and Wastewater Engineering Practical", + }, + { + id: 757, + name: "WS ESC524 - Soil and Microbiology Practical", + }, + { + id: 758, + name: "WS ESD505 - Advanced Water and Wastewater Treatment", + }, + { + id: 759, + name: "WS ESD512 - Groundwater Contaminant Transport", + }, + { + id: 760, + name: "WS ESO501 - Environmental Management System and Auditing", + }, + { + id: 761, + name: "WS ESO502 - Environmental Aspects of Industries", + }, + { + id: 762, + name: "WS FMC553 - Fuel Technology Laboratory", + }, + { + id: 763, + name: "WS FMC556 - Materials Characterization Laboratory", + }, + { + id: 764, + name: "WS FMD525 - Iron and Steel Making", + }, + { + id: 765, + name: "WS FMD528 - Power Plant Engineering", + }, + { + id: 766, + name: "WS FMD531 - Alternate Energy Systems", + }, + { + id: 767, + name: "WS FMD540 - Size Enlargement Processes", + }, + { + id: 768, + name: "WS FMD541 - Processing Equipment Selection", + }, + { + id: 769, + name: "WS MCC539 - Advanced DBMS", + }, + { + id: 770, + name: "WS MCC540 - Neural Networks and Deep Learning", + }, + { + id: 771, + name: "WS MCC541 - Advanced DBMS Practical", + }, + { + id: 772, + name: "WS MCC542 - Neural Networks and Deep Learning Practical", + }, + { + id: 773, + name: "WS MCD543 - Missing Data Analysis in Survey Sampling", + }, + { + id: 774, + name: "WS MCO531 - Stochastic Processes", + }, + { + id: 775, + name: "WS MCO532 - Advanced Multivariate Analysis", + }, + { + id: 776, + name: "WS MNC503 - Mine Planning and Design", + }, + { + id: 777, + name: "WS MNC506 - Computer Aided Mine Planning and Design Practical", + }, + { + id: 778, + name: "WS MNC508 - Geostatistics and Mine Valuation", + }, + { + id: 779, + name: "WS MNC509 - Mine Simulation and Data analytics Practical", + }, + { + id: 780, + name: "WS MND500 - Managerial Decision Making", + }, + { + id: 781, + name: "WS MND556 - Computational Geomechanics", + }, + { + id: 782, + name: "WS MNO501 - Mining, Energy and Climate Change", + }, + { + id: 783, + name: "WS MNO510 - Rock Excavation Technology", + }, + { + id: 784, + name: "WS MEC509 - Mechanical Engineering Lab - I", + }, + { + id: 785, + name: "WS MEC510 - Mechanical Engineering Lab - II", + }, + { + id: 786, + name: "WS MED513 - Thermo-Production Processes", + }, + { + id: 787, + name: "WS MED525 - Rotor Dynamics", + }, + { + id: 788, + name: "WS MED538 - Gas Dynamics", + }, + { + id: 789, + name: "WS MED546 - Conduction and Radiation", + }, + { + id: 790, + name: "WS MED547 - Convective and Two-phase Flow", + }, + { + id: 791, + name: "WS MED554 - Surface Engineering", + }, + { + id: 792, + name: "WS MED555 - Computer Aided Manufacturing and Robotics", + }, + { + id: 793, + name: "WS MEO579 - Computational Fluid Dynamics", + }, + { + id: 794, + name: "WS MSC515 - Software Lab", + }, + { + id: 795, + name: "WS MSC517 - Simulation Modelling & Analysis Lab", + }, + { + id: 796, + name: "WS MSC519 - Project Management", + }, + { + id: 797, + name: "WS MSC520 - Quality Management", + }, + { + id: 798, + name: "WS MSC527 - Machine Learning", + }, + { + id: 799, + name: "WS MSD512 - Service Operations Management", + }, + { + id: 800, + name: "WS MSD526 - Supply Chain Management", + }, + { + id: 801, + name: "WS PEC508 - Petroleum Geomechanics and Hydraulic Fracturing", + }, + { + id: 802, + name: "WS PEC509 - Advanced Drilling Technology", + }, + { + id: 803, + name: "WS PEC510 - Petroleum Instrumentation and Measurements Practical", + }, + { + id: 804, + name: "WS PEC511 - Development of Working Models Practical", + }, + { + id: 805, + name: "WS PED501 - Reservoir Simulation", + }, + { + id: 806, + name: "WS PEO501 - Fluid Flow through Porous Media", + }, + { + id: 807, + name: "WS PEO503 - Unconventional Hydrocarbon Resources", + }, + { + id: 808, + name: "WS CYC508 - Kinetics and Thermodynamics", + }, + { + id: 809, + name: "WS CYC509 - Methods in Organic Synthesis", + }, + { + id: 810, + name: "WS CYC510 - Organometallic Chemistry", + }, + { + id: 811, + name: "WS CYC511 - Group Theory & Electronic Spectroscopy", + }, + { + id: 812, + name: "WS CYC512 - Physical Chemistry Lab - I", + }, + { + id: 813, + name: "WS CYC513 - Organic Chemistry Lab - II", + }, + { + id: 814, + name: "WS CYD513 - Electroanalytical Methods", + }, + { + id: 815, + name: "WS CYO503 - Rechargeable Battery Science and Technology", + }, + { + id: 816, + name: "WS MCC508 - Advanced Algebra", + }, + { + id: 817, + name: "WS MCC509 - Statistical Inference", + }, + { + id: 818, + name: "WS MCC510 - Operating Systems", + }, + { + id: 819, + name: "WS MCC511 - Database Management Systems", + }, + { + id: 820, + name: "WS MCC512 - Operating Systems Practical", + }, + { + id: 821, + name: "WS MCC513 - Database Management Systems Practical", + }, + { + id: 822, + name: "WS MCD504 - Measure Theory", + }, + { + id: 823, + name: "WS PHC508 - Quantum Mechanics", + }, + { + id: 824, + name: "WS PHC509 - Electrodynamics and Radiation theory", + }, + { + id: 825, + name: "WS PHC510 - Atomic and Molecular Physics", + }, + { + id: 826, + name: "WS PHC511 - Condensed Matter Physics", + }, + { + id: 827, + name: "WS PHC512 - Experimental Physics - III", + }, + { + id: 828, + name: "WS PHC513 - Experimental Physics - IV", + }, + { + id: 829, + name: "WS PHD502 - Computational Physics", + }, + { + id: 830, + name: "WS - ", + }, + { + id: 831, + name: "WS MSD514 - Financial Econometrics", + }, + { + id: 832, + name: "WS MSD515 - Services Marketing", + }, + { + id: 833, + name: "WS MSD521 - Consumer Behaviour", + }, + { + id: 834, + name: "WS MSC510 - Corporate Finance", + }, + { + id: 835, + name: "WS MSC511 - Organizational Behaviour", + }, + { + id: 836, + name: "WS MSC512 - Operations Management", + }, + { + id: 837, + name: "WS MSC513 - Marketing Management", + }, + { + id: 838, + name: "WS MSC514 - Human Resources Management", + }, + { + id: 839, + name: "WS MSC515 - Software Lab", + }, + { + id: 840, + name: "WS MSC517 - Simulation Modelling & Analysis Lab", + }, + { + id: 841, + name: "WS MCC539 - Advanced DBMS", + }, + { + id: 842, + name: "WS MCC541 - Advanced DBMS Practical", + }, + { + id: 843, + name: "WS MCO531 - Stochastic Processes", + }, + { + id: 844, + name: "WS MSC510 - Corporate Finance", + }, + { + id: 845, + name: "WS MSC524 - Marketing Management", + }, + { + id: 846, + name: "WS MSC525 - Human Resources Management", + }, + { + id: 847, + name: "WS MSC527 - Machine Learning", + }, + { + id: 848, + name: "WS MSC528 - Machine Learning Lab", + }, + { + id: 849, + name: "WS - ", + }, + { + id: 850, + name: "WS MSC529 - Big Data Lab", + }, + { + id: 851, + name: "WS MSD514 - Financial Econometrics", + }, + { + id: 852, + name: "WS MSD519 - International Finance", + }, + { + id: 853, + name: "WS MSD520 - Merchant Banking and Financial Services", + }, + { + id: 854, + name: "WS MSD524 - International Human Resource Management", + }, + { + id: 855, + name: "WS MSD537 - HR Analytics", + }, + { + id: 856, + name: "WS GLC509 - Igneous Petrology", + }, + { + id: 857, + name: "WS GLC510 - Metamorphic Petrology", + }, + { + id: 858, + name: "WS GLC511 - Applied Sedimentology", + }, + { + id: 859, + name: "WS GLC512 - Petroleum Geology", + }, + { + id: 860, + name: "WS GLC513 - Coal Geology", + }, + { + id: 861, + name: "WS GLC514 - Igneous and Metamorphic Petrology Practical", + }, + { + id: 862, + name: "WS GLC515 - Sedimentology and Petroleum Geology Practical", + }, + { + id: 863, + name: "WS GLC516 - Coal Geology Practical", + }, + { + id: 864, + name: "WS GPC508 - Earthquake Seismology", + }, + { + id: 865, + name: "WS GPC509 - Geoelectrical Method", + }, + { + id: 866, + name: "WS GPC510 - Well Logging", + }, + { + id: 867, + name: "WS GPC511 - Seismic Data Acquisition", + }, + { + id: 868, + name: "WS GPC512 - Seismic Data Acquisition Practical", + }, + { + id: 869, + name: "WS GPC513 - Geoelectrical Methods Practical", + }, + { + id: 870, + name: "WS GPC515 - Earthquake Seismology and Well Logging Practical", + }, + { + id: 871, + name: "WS GLC526 - Ore Geology", + }, + { + id: 872, + name: "WS GLC527 - Exploration Geology and Mineral Economics", + }, + { + id: 873, + name: "WS GLC533 - Ore Geology Practical", + }, + { + id: 874, + name: "WS GLC534 - Exploration Geology Practical", + }, + { + id: 875, + name: "WS GLD531 - Sequence Stratigraphy and Basin Analysis", + }, + { + id: 876, + name: "WS GLD544 - Kinematics of Rock Deformation", + }, + { + id: 877, + name: "WS GLO542 - Remote Sensing and GIS", + }, + { + id: 878, + name: "WS GPC520 - Magnetic Method", + }, + { + id: 879, + name: "WS GPC521 - Geoelectromagnetic Method", + }, + { + id: 880, + name: "WS GPC522 - Magnetic Method Practical", + }, + { + id: 881, + name: "WS GPC523 - Geoelectromagnetic Method Practical", + }, + { + id: 882, + name: "WS GPD509 - Well Log and Electrofacies Analysis", + }, + { + id: 883, + name: "WS GPD510 - Reservoir Geophysics and Deep Water Imaging", + }, + { + id: 884, + name: "WS GPO510 - Strong Motion Seismology and Structural Responses", + }, + { + id: 885, + name: "WS CYP003 - Chemistry - II", + }, + { + id: 886, + name: "WS CYP004 - Chemistry Lab - II", + }, + { + id: 887, + name: "WS HSP002 - English - II", + }, + { + id: 888, + name: "WS MCP002 - Mathematics - II", + }, + { + id: 889, + name: "WS PHP003 - Physics - II", + }, + { + id: 890, + name: "WS PHP004 - Physics Lab - II", + }, + { + id: 891, + name: "WS GPD521 - Time Series Analysis in Geosciences", + }, + { + id: 892, + name: "WS CYD518 - Metalloenzymes-Special Topics", + }, + { + id: 893, + name: "WS CYD528 - Modern Separation Techniques", + }, + { + id: 894, + name: "WS CHD503 - Catalysts & Materials Characterization Techniques", + }, + { + id: 895, + name: "WS CHD507 - Modelling & Simulation", + }, + { + id: 896, + name: "WS CHO504 - Electrochemical Energy Science and Engineering", + }, + { + id: 897, + name: "WS CSD503 - Computational Number Theory", + }, + { + id: 898, + name: "WS CSD518 - Pattern Recognition", + }, + { + id: 899, + name: "WS CSO502 - Data Analytics", + }, + { + id: 900, + name: "WS CEO529 - Blast Protection of Structures", + }, + { + id: 901, + name: "WS CEO530 - Sustainable Engineering", + }, + { + id: 902, + name: "WS ECD510 - Quantum Computation", + }, + { + id: 903, + name: "WS ECD561 - ASIC Design", + }, + { + id: 904, + name: "WS ECO542 - Advanced Microwave Measurement & Instrument", + }, + { + id: 905, + name: "WS EED501 - Design of Power Converters", + }, + { + id: 906, + name: "WS EED502 - Advanced Machine Drives", + }, + { + id: 907, + name: "WS ESD506 - Biomedical and Hazardous Waste Management", + }, + { + id: 908, + name: "WS ESD509 - Air and Noise Pollution Control", + }, + { + id: 909, + name: "WS FMD534 - Metal Forming Technology", + }, + { + id: 910, + name: "WS FMO541 - Characterization of Materials", + }, + { + id: 911, + name: "WS MCD540 - Biostatistics", + }, + { + id: 912, + name: "WS MCO533 - Numerical Linear Algebra", + }, + { + id: 913, + name: "WS MND504 - Modelling and Analysis of Geospatial data", + }, + { + id: 914, + name: "WS MND505 - Geospatial Technologies for Natural Resources", + }, + { + id: 915, + name: "WS MND511 - Modern Blasting Technology in Mining", + }, + { + id: 916, + name: "WS MND547 - Mine Automation", + }, + { + id: 917, + name: "WS MED503 - Finite Element Method", + }, + { + id: 918, + name: "WS MED509 - Advanced Thermodynamics", + }, + { + id: 919, + name: "WS MED515 - Theory of Metal Forming", + }, + { + id: 920, + name: "WS MEO534 - Automation and Control", + }, + { + id: 921, + name: "WS MSD505 - Materials Management", + }, + { + id: 922, + name: "WS MSD525 - Operations Analytics", + }, + { + id: 923, + name: "WS PED503 - Enhanced Oil and Gas Recovery Methods", + }, + { + id: 924, + name: "WS PED504 - Profile Modification & Water Shutoff", + }, + { + id: 925, + name: "WS CYD501 - Medicinal Chemistry", + }, + { + id: 926, + name: "WS CYD502 - Polymer Chemistry", + }, + { + id: 927, + name: "WS CYD505 - Asymmetric Synthesis", + }, + { + id: 928, + name: "WS CYD506 - Computational Chemistry", + }, + { + id: 929, + name: "WS CYD512 - Modern Aspects of Catalysis and Surface Science", + }, + { + id: 930, + name: "WS CYD520 - Advanced Fluorescence Spectroscopy", + }, + { + id: 931, + name: "WS MCD503 - Integral Equations and Calculus of Variations", + }, + { + id: 932, + name: "WS MCD513 - Methods of Applied Mathematics", + }, + { + id: 933, + name: "WS PHD507 - Plasma and Space Physics", + }, + { + id: 934, + name: "WS PHO502 - Introduction to Biophysics", + }, + { + id: 935, + name: "WS GLD575 - Modern Instrumental Methods in Exploration Geosciences", + }, + { + id: 936, + name: "WS GLO501 - Image Processing and Data Analysis", + }, + { + id: 937, + name: "WS GPD522 - Computational Seismology", + }, + { + id: 938, + name: "WS GPO511 - Satellite Image Processing and Geographic Information System", + }, + { + id: 939, + name: "WS - ", + }, + { + id: 940, + name: "WS GLD551 - Elements of Rock Engineering", + }, + { + id: 941, + name: "WS - ", + }, + { + id: 942, + name: "WS GPD505 - Near Surface Geophysics and Geotechnical Modelling", + }, + { + id: 943, + name: "WS MCD532 - Data Mining", + }, + { + id: 944, + name: "WS MCD535 - Bioinformatics", + }, + { + id: 945, + name: "WS CEI101 - Engineering Graphics", + }, + { + id: 946, + name: "WS CSI101 - Computer Programming", + }, + { + id: 947, + name: "WS CSI102 - Computer Programming Lab", + }, + { + id: 948, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 949, + name: "WS MEI101 - Engineering Mechanics", + }, + { + id: 950, + name: "WS MSI101 - Engineering Economics and Finance", + }, + { + id: 951, + name: "WS PHI101 - Physics", + }, + { + id: 952, + name: "WS PHI102 - Physics Lab", + }, + { + id: 953, + name: "WS CEI101 - Engineering Graphics", + }, + { + id: 954, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 955, + name: "WS MCI103 - Numerical Methods", + }, + { + id: 956, + name: "WS MEI101 - Engineering Mechanics", + }, + { + id: 957, + name: "WS MSI101 - Engineering Economics and Finance", + }, + { + id: 958, + name: "WS PHI101 - Physics", + }, + { + id: 959, + name: "WS PHI102 - Physics Lab", + }, + { + id: 960, + name: "WS CEI101 - Engineering Graphics", + }, + { + id: 961, + name: "WS CSI101 - Computer Programming", + }, + { + id: 962, + name: "WS CSI102 - Computer Programming Lab", + }, + { + id: 963, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 964, + name: "WS MEI101 - Engineering Mechanics", + }, + { + id: 965, + name: "WS MSI101 - Engineering Economics and Finance", + }, + { + id: 966, + name: "WS PHI101 - Physics", + }, + { + id: 967, + name: "WS PHI102 - Physics Lab", + }, + { + id: 968, + name: "WS CEI101 - Engineering Graphics", + }, + { + id: 969, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 970, + name: "WS MCI103 - Numerical Methods", + }, + { + id: 971, + name: "WS MEI101 - Engineering Mechanics", + }, + { + id: 972, + name: "WS MSI101 - Engineering Economics and Finance", + }, + { + id: 973, + name: "WS PHI101 - Physics", + }, + { + id: 974, + name: "WS PHI102 - Physics Lab", + }, + { + id: 975, + name: "WS CEI101 - Engineering Graphics", + }, + { + id: 976, + name: "WS CSI101 - Computer Programming", + }, + { + id: 977, + name: "WS CSI102 - Computer Programming Lab", + }, + { + id: 978, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 979, + name: "WS MEI101 - Engineering Mechanics", + }, + { + id: 980, + name: "WS MSI101 - Engineering Economics and Finance", + }, + { + id: 981, + name: "WS PHI101 - Physics", + }, + { + id: 982, + name: "WS PHI102 - Physics Lab", + }, + { + id: 983, + name: "WS CEI101 - Engineering Graphics", + }, + { + id: 984, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 985, + name: "WS MCI103 - Numerical Methods", + }, + { + id: 986, + name: "WS MEI101 - Engineering Mechanics", + }, + { + id: 987, + name: "WS MSI101 - Engineering Economics and Finance", + }, + { + id: 988, + name: "WS PHI101 - Physics", + }, + { + id: 989, + name: "WS PHI102 - Physics Lab", + }, + { + id: 990, + name: "WS CEI101 - Engineering Graphics", + }, + { + id: 991, + name: "WS CSI101 - Computer Programming", + }, + { + id: 992, + name: "WS CSI102 - Computer Programming Lab", + }, + { + id: 993, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 994, + name: "WS MEI101 - Engineering Mechanics", + }, + { + id: 995, + name: "WS MSI101 - Engineering Economics and Finance", + }, + { + id: 996, + name: "WS PHI101 - Physics", + }, + { + id: 997, + name: "WS PHI102 - Physics Lab", + }, + { + id: 998, + name: "WS CEI101 - Engineering Graphics", + }, + { + id: 999, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1000, + name: "WS MCI103 - Numerical Methods", + }, + { + id: 1001, + name: "WS MEI101 - Engineering Mechanics", + }, + { + id: 1002, + name: "WS MSI101 - Engineering Economics and Finance", + }, + { + id: 1003, + name: "WS PHI101 - Physics", + }, + { + id: 1004, + name: "WS PHI102 - Physics Lab", + }, + { + id: 1005, + name: "WS CYI101 - Chemistry", + }, + { + id: 1006, + name: "WS CYI102 - Chemistry Lab", + }, + { + id: 1007, + name: "WS GLI101 - Earth Sciences", + }, + { + id: 1008, + name: "WS HSI101 - Communication Skills", + }, + { + id: 1009, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1010, + name: "WS MCI103 - Numerical Methods", + }, + { + id: 1011, + name: "WS MEI102 - Manufacturing Processes", + }, + { + id: 1012, + name: "WS CSI101 - Computer Programming", + }, + { + id: 1013, + name: "WS CSI102 - Computer Programming Lab", + }, + { + id: 1014, + name: "WS CYI101 - Chemistry", + }, + { + id: 1015, + name: "WS CYI102 - Chemistry Lab", + }, + { + id: 1016, + name: "WS ESI101 - Environmental Sciences", + }, + { + id: 1017, + name: "WS HSI101 - Communication Skills", + }, + { + id: 1018, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1019, + name: "WS MEI102 - Manufacturing Processes", + }, + { + id: 1020, + name: "WS CYI101 - Chemistry", + }, + { + id: 1021, + name: "WS CYI102 - Chemistry Lab", + }, + { + id: 1022, + name: "WS GLI101 - Earth Sciences", + }, + { + id: 1023, + name: "WS HSI101 - Communication Skills", + }, + { + id: 1024, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1025, + name: "WS MCI103 - Numerical Methods", + }, + { + id: 1026, + name: "WS MEI102 - Manufacturing Processes", + }, + { + id: 1027, + name: "WS CSI101 - Computer Programming", + }, + { + id: 1028, + name: "WS CSI102 - Computer Programming Lab", + }, + { + id: 1029, + name: "WS CYI101 - Chemistry", + }, + { + id: 1030, + name: "WS CYI102 - Chemistry Lab", + }, + { + id: 1031, + name: "WS ESI101 - Environmental Sciences", + }, + { + id: 1032, + name: "WS HSI101 - Communication Skills", + }, + { + id: 1033, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1034, + name: "WS MEI102 - Manufacturing Processes", + }, + { + id: 1035, + name: "WS CYI101 - Chemistry", + }, + { + id: 1036, + name: "WS CYI102 - Chemistry Lab", + }, + { + id: 1037, + name: "WS GLI101 - Earth Sciences", + }, + { + id: 1038, + name: "WS HSI101 - Communication Skills", + }, + { + id: 1039, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1040, + name: "WS MCI103 - Numerical Methods", + }, + { + id: 1041, + name: "WS MEI102 - Manufacturing Processes", + }, + { + id: 1042, + name: "WS CSI101 - Computer Programming", + }, + { + id: 1043, + name: "WS CSI102 - Computer Programming Lab", + }, + { + id: 1044, + name: "WS CYI101 - Chemistry", + }, + { + id: 1045, + name: "WS CYI102 - Chemistry Lab", + }, + { + id: 1046, + name: "WS ESI101 - Environmental Sciences", + }, + { + id: 1047, + name: "WS HSI101 - Communication Skills", + }, + { + id: 1048, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1049, + name: "WS MEI102 - Manufacturing Processes", + }, + { + id: 1050, + name: "WS CYI101 - Chemistry", + }, + { + id: 1051, + name: "WS CYI102 - Chemistry Lab", + }, + { + id: 1052, + name: "WS GLI101 - Earth Sciences", + }, + { + id: 1053, + name: "WS HSI101 - Communication Skills", + }, + { + id: 1054, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1055, + name: "WS MCI103 - Numerical Methods", + }, + { + id: 1056, + name: "WS MEI102 - Manufacturing Processes", + }, + { + id: 1057, + name: "WS CSI101 - Computer Programming", + }, + { + id: 1058, + name: "WS CSI102 - Computer Programming Lab", + }, + { + id: 1059, + name: "WS CYI101 - Chemistry", + }, + { + id: 1060, + name: "WS CYI102 - Chemistry Lab", + }, + { + id: 1061, + name: "WS ESI101 - Environmental Sciences", + }, + { + id: 1062, + name: "WS HSI101 - Communication Skills", + }, + { + id: 1063, + name: "WS MCI102 - Mathematics - II", + }, + { + id: 1064, + name: "WS MEI102 - Manufacturing Processes", + }, + { + id: 1065, + name: "WS GLC591 - Research Methodology", + }, + { + id: 1066, + name: "WS GLD501 - Essentials of Mineral Geostatistics", + }, + { + id: 1067, + name: "WS GPC555 - Research Methodology and Statistics", + }, + { + id: 1068, + name: "WS CYC540 - Research Methodology and Statistics", + }, + { + id: 1069, + name: "WS CHC518 - Research Methodology", + }, + { + id: 1070, + name: "WS CSC516 - Research Methodology", + }, + { + id: 1071, + name: "WS CEC502 - Research Methodology and Statistics", + }, + { + id: 1072, + name: "WS ECC581 - Research Methodology", + }, + { + id: 1073, + name: "WS EEC550 - Research Methodology and Statistics for Electrical Engineering", + }, + { + id: 1074, + name: "WS ESC526 - Research Methodology", + }, + { + id: 1075, + name: "WS HSD507 - Introduction to Drama, Theatre and Performance Studies", + }, + { + id: 1076, + name: "WS HSD521 - Vedanta Philosophy", + }, + { + id: 1077, + name: "WS HSD551 - Psychological Data Science", + }, + { + id: 1078, + name: "WS MCC500 - Research Methodology", + }, + { + id: 1079, + name: "WS MCC500 - Research Methodology", + }, + { + id: 1080, + name: "WS MEC591 - Research Methodology and Statistics", + }, + { + id: 1081, + name: "WS PHC571 - Research Methodology and Statistics", + }, + { + id: 1082, + name: "WS HSC507 - Textual Analysis", + }, + { + id: 1083, + name: "WS HSC516 - Quantitative Techniques Lab", + }, + { + id: 1084, + name: "WS HSC520 - Introduction to Digital Humanities", + }, + { + id: 1085, + name: "WS HSC521 - Data Science Fundamentals", + }, + { + id: 1086, + name: "WS HSC527 - Digital Ethics", + }, + { + id: 1087, + name: "WS HSC532 - Social Research Lab", + }, + { + id: 1088, + name: "WS HSD554 - Mixed Method Research", + }, + { + id: 1089, + name: "WS HSO508 - Digital Society", + }, + { + id: 1090, + name: "WS HSO513 - Environment, Development and Politics", + }, +]; + +export default courses; diff --git a/New_APIs/IIT-ism-subjects-api/index.js b/New_APIs/IIT-ism-subjects-api/index.js new file mode 100644 index 0000000..f8c5070 --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/index.js @@ -0,0 +1,27 @@ +import express from "express"; +import dotenv from "dotenv"; +import timeTableRouter from "./routes/timeTable.js"; +import instructorRouter from "./routes/instructor.js"; +import subjectRouter from "./routes/subjects.js"; + +dotenv.config(); + +const app = express(); +const port = process.env.PORT || 3000; + +app.use(express.json()); + +app.use(express.urlencoded({ extended: true })); + +app.get("/", (req, res) => { + return res.status(200).json({ + success: true, + message: "Server healthy no worries" + }); +}); +app.use("/timetable", timeTableRouter); +app.use("/subject",subjectRouter); +app.use("/instructor", instructorRouter); + +// Start the server +app.listen(port); diff --git a/New_APIs/IIT-ism-subjects-api/package-lock.json b/New_APIs/IIT-ism-subjects-api/package-lock.json new file mode 100644 index 0000000..89879c0 --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/package-lock.json @@ -0,0 +1,706 @@ +{ + "name": "iit-ism-subjects-api", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "iit-ism-subjects-api", + "version": "1.0.0", + "license": "ISC", + "dependencies": { + "dotenv": "^16.4.5", + "express": "^4.19.2" + } + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==" + }, + "node_modules/body-parser": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.2.tgz", + "integrity": "sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==", + "dependencies": { + "bytes": "3.1.2", + "content-type": "~1.0.5", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.11.0", + "raw-body": "2.5.2", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "dependencies": { + "safe-buffer": "5.2.1" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/content-type": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", + "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.6.0.tgz", + "integrity": "sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==" + }, + "node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "dependencies": { + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/dotenv": { + "version": "16.4.5", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz", + "integrity": "sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://dotenvx.com" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "dependencies": { + "get-intrinsic": "^1.2.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/express": { + "version": "4.19.2", + "resolved": "https://registry.npmjs.org/express/-/express-4.19.2.tgz", + "integrity": "sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==", + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.2", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.6.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.11.0", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "dependencies": { + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "dependencies": { + "es-define-property": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==" + }, + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==" + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "dependencies": { + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/qs": { + "version": "6.11.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz", + "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/set-function-length": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.2.2.tgz", + "integrity": "sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==", + "dependencies": { + "define-data-property": "^1.1.4", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/side-channel": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.6.tgz", + "integrity": "sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==", + "dependencies": { + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4", + "object-inspect": "^1.13.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + } + } +} diff --git a/New_APIs/IIT-ism-subjects-api/package.json b/New_APIs/IIT-ism-subjects-api/package.json new file mode 100644 index 0000000..4790798 --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/package.json @@ -0,0 +1,16 @@ +{ + "name": "iit-ism-subjects-api", + "version": "1.0.0", + "description": "", + "main": "index.js", + "type": "module", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "author": "", + "license": "ISC", + "dependencies": { + "dotenv": "^16.4.5", + "express": "^4.19.2" + } +} diff --git a/New_APIs/IIT-ism-subjects-api/routes/instructor.js b/New_APIs/IIT-ism-subjects-api/routes/instructor.js new file mode 100644 index 0000000..fd0d097 --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/routes/instructor.js @@ -0,0 +1,37 @@ +import express from "express"; +import data from "../assets/course_info.js"; + +const instructorRouter = express.Router(); + +//gets instructors of all the courses + +instructorRouter.get("/allCourses", async (req, res) => { + const returnData = data.map((course) => ({ + code: course.code, + name: course.name, + instructor: course.instructor, + })); + return res.status(200).json({ + success: true, + message: "Extracted all instructor names successfully", + instructorData: returnData, + }); +}); + +//gets instructors of a particular course +instructorRouter.get("/:courseCode", async (req, res) => { + const returnData = data + .filter((course) => course.code === req.params.courseCode) + .map((course) => ({ + name: course.name, + code: course.code, + instructor: course.instructor, + })); + return res.status(200).json({ + success: true, + message: "Extracted all timetables successfully", + instructorData: returnData, + }); +}); + +export default instructorRouter; diff --git a/New_APIs/IIT-ism-subjects-api/routes/subjects.js b/New_APIs/IIT-ism-subjects-api/routes/subjects.js new file mode 100644 index 0000000..03bbec3 --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/routes/subjects.js @@ -0,0 +1,92 @@ +import express from "express"; +import data from "../assets/course_info.js"; +import subject from "../assets/course_names.js"; + +const departmentMapping = { + CE: "Chemical Engineering", + CVE: "Civil Engineering", + CSE: "Computer Science and Engineering", + EE: "Electrical Engineering", + ECE: "Electronics Engineering", + ESE: "Environmental Science & Engineering", + FME: "Fuel Mineral & Metallurgical Engineering", + ME: "Mining Engineering", + ESE: "Mechanical Engineering", + PE: "Petroleum Engineering", + PHY: "Physics", +}; + +const typeMapping = { + DE: "Department Elective (DE)", + OE: "Open Elective (OE)", + DC: "Department Compulsory (DC)", + ESO: "ESO", + IC: "Institute Core (IC)", +}; +const subjectRouter = express.Router(); + +//gets all subjects names of all departmentns +subjectRouter.get("/allSubjectNames", async (req, res) => { + const returnData = subject; + return res.status(200).json({ + success: true, + message: "Extracted all subject names successfully", + allSubjectNames: returnData, + }); +}); + +//gets all info about a particualr course +subjectRouter.get("/courseCode/:courseCode", async (req, res) => { + const returnData = data.filter( + (course) => course.code === req.params.courseCode + ); + return res.status(200).json({ + success: true, + message: "Extracted all info of subject successfully", + subjectData: returnData, + }); +}); + +//gets all courses of a particular semester type +subjectRouter.get("/semester/:type", async (req, res) => { + const type = req.params.type; + var returnData = []; + if (type == "monsoon") { + returnData = data.filter((course) => course.semester == "MS"); + } else { + returnData = data.filter((course) => course.semester == "WS"); + } + return res.status(200).json({ + success: true, + message: "Extracted all info of subject successfully", + subjectData: returnData, + }); +}); + +//gets all courses of a particular department +subjectRouter.get("/departmentName/:departmentName", async (req, res) => { + const departmentName = req.params.departmentName; + const returnData = data.filter( + (course) => course.department == departmentMapping[departmentName] + ); + return res.status(200).json({ + success: true, + message: "Extracted all info of subject successfully", + subjectData: returnData, + }); +}); + +//gets all coures of a particular course type +subjectRouter.get("/subjectType/:subjectType", async (req, res) => { + const subjectType = req.params.subjectType; + const returnData = data.filter( + (course) => course.type = typeMapping[subjectType] + ); + return res.status(200).json({ + success: true, + message: "Extracted all info of subject successfully", + subjectData: returnData, + }); +}); + +export default subjectRouter; diff --git a/New_APIs/IIT-ism-subjects-api/routes/timeTable.js b/New_APIs/IIT-ism-subjects-api/routes/timeTable.js new file mode 100644 index 0000000..c4408ca --- /dev/null +++ b/New_APIs/IIT-ism-subjects-api/routes/timeTable.js @@ -0,0 +1,45 @@ +import express from "express"; +import data from "../assets/course_info.js" + +const timeTableRouter = express.Router(); + +const extractTimetable = (courses) => { + const timetable = []; + courses.forEach((course) => { + const { code, name, timetable: courseTimetable } = course; + courseTimetable.forEach((slot) => { + timetable.push({ + code, + name, + day: slot[0], + time: slot[1], + room: slot[2], + }); + }); + }); + return timetable; +}; + +//gets timetable of all courses +timeTableRouter.get("/allCourses", async (req, res) => { + const returnData = extractTimetable(data); + return res.status(200).json({ + success: true, + message: "Extracted all timetables successfully", + timeTable: returnData + }); +}) + +//gets timetable of a particular course +timeTableRouter.get("/courseCode/:courseCode", async (req, res) => { + const returnData = data + .filter((course) => course.code === req.params.courseCode) + .map((course) => course.timetable); + return res.status(200).json({ + success: true, + message: "Extracted all timetables successfully", + timeTable: returnData, + }); +}) + +export default timeTableRouter; \ No newline at end of file