diff --git a/.gitignore b/.gitignore index e18d5ab..df2ee6f 100644 --- a/.gitignore +++ b/.gitignore @@ -121,7 +121,6 @@ psd thumb sketch -Scripts .vscode client/package-lock.json package-lock.json diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..f6ca428 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,6 @@ +{ + "trailingComma": "es5", + "tabWidth": 2, + "semi": false, + "singleQuote": false +} diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 6ed287b..78883ae 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,24 +1,21 @@ # Contributing Guidelines -This Project Uses the 'Git' Workflow.There are separate master/release and dev branches.The features which you work on get merged with dev once they are reviewed.The dev branch is merged with master/release branch at the end of each sprint. - We love contributions and would be glad to help you make good patches. That out of the way, an average contribution would involve the following: 1. Fork this repository in your account. 2. Clone it on your local machine. -3. Add a new remote using `git remote add upstream https://github.com/Dryft-bits/ChronoFactorem.git`. -4. Mark the feature as 'Taken' on Pivotal Tracker on which you want to work. -5. Create a new feature branch with `git checkout -b my-feature`. -6. Make your changes. -7. Commit your changes (See [Guidelines](#commit-message-guidelines)). -8. Rebase your commits with `upstream/dev`: +3. Add a new remote using `git remote add upstream https://github.com/crux-bphc/ChronoFactorem`. +4. Create a new feature branch with `git checkout -b my-feature`. +5. Make your changes. +6. Commit your changes (See [Guidelines](#commit-message-guidelines)). +7. Rebase your commits with `upstream/master`: - `git checkout master` - - `git fetch upstream dev` + - `git fetch upstream master` - `git reset --hard FETCH_HEAD` - `git checkout my-feature` - - `git rebase dev` -9. Resolve any merge conflicts, and then push the branch with `git push origin my-feature`. -10. Create a Pull Request detailing the changes you made and wait for review/merge. + - `git rebase master` +8. Resolve any merge conflicts, and then push the branch with `git push origin my-feature`. +9. Create a Pull Request detailing the changes you made and wait for review/merge. It might seem a little complicated at a glance, but the fundamental concept is simple: we want to ensure that your changes are always made on top of the latest changes to the project and thus, we can easily merge your code. If you are facing any troubles, create a PR as you usually would and we would merge it manually. :) diff --git a/README.md b/README.md index 541be41..e59fb61 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,18 @@ # ChronoFactorem A MERN stack Web App that allows students to create draft time tables +

+ +

+ +

+ +

+ # Contributing See Contributing.md -# Project Team +# Original Team + [Harshvardhan Jha](https://github.com/HarshvardhanJha1) (Product Owner + Developer) + [Aviral Agarwal](https://github.com/Aviral14) (Scrum Master + Developer) + [Kushagra Gupta](https://github.com/Kushagra-0801) (Developer) diff --git a/Scripts/Courses.py b/Scripts/Courses.py new file mode 100644 index 0000000..ccd31bc --- /dev/null +++ b/Scripts/Courses.py @@ -0,0 +1,11 @@ +import json +import random +courses = None +with open("../client/src/Timetable.json",'r') as f: + courses = (json.load(f)).keys() +_data = [] +with open('./data/courses.json','w+') as f: + for i in courses: + data = {"courseId":i,"count":{"$numberInt":str(random.randint(0,300))}} + _data.append(data) + json.dump(_data,f) diff --git a/Scripts/Helform.py b/Scripts/Helform.py new file mode 100644 index 0000000..1eac832 --- /dev/null +++ b/Scripts/Helform.py @@ -0,0 +1,46 @@ +import json +import random + +with open( + '../client/src/Timetable.json' +) as f: + timetable = json.load(f) + +data = [] + +for course in timetable: + if course.startswith('GS') or course.startswith('HSS') or course in [ + 'BITS F214', 'BITS F385', 'BITS F399' + ]: + data.append({ + 'courseName': course.lower(), + 'studentsInterestedInSlot': { + '0': { + '$numberInt': str(random.randint(1, 30)) + }, + '1': { + '$numberInt': str(random.randint(1, 30)) + }, + '2': { + '$numberInt': str(random.randint(1, 30)) + }, + '3': { + '$numberInt': str(random.randint(1, 30)) + }, + '4': { + '$numberInt': str(random.randint(1, 30)) + }, + '5': { + '$numberInt': str(random.randint(1, 30)) + }, + '6': { + '$numberInt': str(random.randint(1, 30)) + }, + '7': { + '$numberInt': str(random.randint(1, 30)) + }, + } + }) + +with open('./data/HEL_MOCK_DATA.json', 'w+') as f: + json.dump(data, f) \ No newline at end of file diff --git a/Scripts/Login_mock.py b/Scripts/Login_mock.py new file mode 100644 index 0000000..77d89e8 --- /dev/null +++ b/Scripts/Login_mock.py @@ -0,0 +1,33 @@ +import json +import random +from datetime import datetime, timedelta, timezone + +data = [] + +START_ID = 0x5edfc6a5d4a4f36e20f98e8b + +START_USER = 0x5ee5fc309e6606d76e9c0e83 +END_USER = 0x5ee5fc309e6606d76e9c1000 + +for id_ in range(100): + #id_ = START_ID + id_ + user = random.randint(START_USER, END_USER) + delta = timedelta(days=random.randint(0, 180), + seconds=random.randint(0, 86400)) + creation_date = datetime.now(tz=timezone.utc) - delta + seconds = (creation_date - + datetime(1970, 1, 1, tzinfo=timezone.utc)).total_seconds() + data.append({ + 'userId': { + '$oid': f"{user:x}" + }, + 'createdAt': { + '$date': { + '$numberLong': f"{int(seconds)}{random.randint(1,999):03}" + } + }, + }) +data.sort(key=lambda x: x["createdAt"]["$date"]['$numberLong']) + +with open('./data/login.json', 'w') as f: + json.dump(data, f) diff --git a/Scripts/Students.py b/Scripts/Students.py new file mode 100644 index 0000000..faf327f --- /dev/null +++ b/Scripts/Students.py @@ -0,0 +1,29 @@ +import json +import names +import random +false = False +true = True +#listOfUsernames = ["Mike Hunt", "Ben Dover", "Phil M'Crack", "Mike Oxlong", "Hue Janus", "Jennah Tillias", "Ivan Tufaq", "Mike Hock"] +branch = ["CS","ECE","EEE","ENI","PHY","CHEM","ECO","BIO","CHE","CE","CHEM","PHA"] +courses = None +with open("../client/src/Timetable.json",'r') as f: + courses = (json.load(f)).keys() +year = [1,2,3,4,5] +jsonlist = [] +with open('./data/students.json','w+') as f: + for i in range(0,10): + jsonStudent = {"branch":["CHEM"],"interestedCourses":[{"BIO F111":{"$numberInt":"1"}}],"name":"fdjkdfkj","email":"f20202020@hyderabad.bits-pilani.ac.in","submittedForm":true,"year":{"$numberInt":"2"}} + courseInt = random.sample(courses,random.randint(1,5)) + interestedCourses = [{c: {'$numberInt:': str(random.randint(1,4))}} for c in courseInt] + jsonStudent['branch'] = [random.choice(branch)] + jsonStudent['year'] = { '$numberInt': random.choice(year)} + jsonStudent['interestedCourses'] = interestedCourses + jsonStudent['submittedForm'] = random.choice([true, false]) + jsonStudent['email']= "f2020"+"{:04d}".format(random.randint(1,1500))+"@hyderabad.bits-pilani.ac.in" + jsonStudent['name'] = names.get_full_name() + jsonlist.append(jsonStudent) + #jsonlist.append(json.dumps(jsonStudent)) + json.dump(jsonlist,f) + + + diff --git a/Scripts/Timetable.py b/Scripts/Timetable.py new file mode 100644 index 0000000..0bea543 --- /dev/null +++ b/Scripts/Timetable.py @@ -0,0 +1,46 @@ +import copy +import json +from numpy.random import permutation +import random +from datetime import datetime, timedelta, timezone +true = True +tt = {"branch": ["CS"], "Courses": [{ "course": { "BIO F110": { "name": "Biology Laboratory", "sections": { "L1": { "instructors": ["Gireesha T Mohannath"], "sched": [{ "room": "A122", "days": ["F"], "hours": [{ "$numberInt": "4" }, { "$numberInt": "5" }] }] }, "L2": { "instructors": ["Minali Singh"], "sched": [{ "room": "A122", "days": ["Th"], "hours": [{ "$numberInt": "4" }, { "$numberInt": "5" }] }] }, "L3": { "instructors": ["Vidya Rajesh"], "sched": [{ "room": "A122", "days": ["T"], "hours": [{ "$numberInt": "4" }, { "$numberInt": "5" }] }] }, "L4": { "instructors": ["PIYUSH KHANDELIA"], "sched": [{ "room": "A122", "days": ["M"], "hours": [{ "$numberInt": "4" }, { "$numberInt": "5" }] }] }, "L5": { "instructors": ["Aishwarya Natarajan"], "sched": [{ "room": "A122", "days": ["W"], "hours": [{ "$numberInt": "4" }, { "$numberInt": "5" }] }] }, "L6": { "instructors": ["Anne Lohitha Alias Anuhya"], "sched": [{ "room": "A122", "days": ["T"], "hours": [{ "$numberInt": "7" }, { "$numberInt": "8" }] }] }, "L7": { "instructors": ["Vivek Sharma"], "sched": [{ "room": "A122", "days": ["M"], "hours": [{ "$numberInt": "7" }, { "$numberInt": "8" }] }] }, "L8": { "instructors": ["Aruku Dazo Vadeo"], "sched": [{ "room": "A122", "days": ["F"], "hours": [{ "$numberInt": "7" }, { "$numberInt": "8" }] }] }, "L9": { "instructors": ["Piyush Khandelia"], "sched": [{ "room": "A122", "days": ["W"], "hours": [{ "$numberInt": "7" }, { "$numberInt": "8" }] }] }, "L10": { "instructors": ["Bakhya Shree Gb"], "sched": [{ "room": "A122", "days": ["S"], "hours": [{ "$numberInt": "4" }, { "$numberInt": "5" }] }] }, "L11": { "instructors": ["Anne Lohitha Alias Anuhya"], "sched": [{ "room": "A122", "days": ["Th"], "hours": [{ "$numberInt": "7" }, { "$numberInt": "8" }] }] } }, "compre": { "date": "30/04", "session": "FN" } } }, "sections": ["L1"] }, { "course": { "HSS F222": { "name": "Linguistics", "sections": { "L1": { "instructors": ["PRANESH BHARGAVA"], "sched": [{ "room": "J120", "days": ["T", "Th", "S"], "hours": [{ "$numberInt": "3" }] }] } }, "compre": { "date": "06/05", "session": "AN" }, "midsem": { "date": "4/3", "time": "9.00 - 10.30AM" } } }, "sections": ["L1"] }], "isShared": true, "ownerId": { "$oid": "5edf76404d1ef40ffbc7835a" }, "name": "t4", "year": { "$numberInt": "2" }, "TimeTable": { "M": { "one": {}, "two": {}, "three": {}, "four": {}, "five": {}, "six": {}, "seven": {}, "eight": {}, "nine": {}, "ten": {} }, "T": { "one": {}, "two": {}, "three": { "courseCode": ["HSS F222"], "courseName": "Linguistics", "sectionRoom": "J120", "numHours": { "$numberInt": "1" }, "section": "L1" }, "four": {}, "five": {}, "six": {}, "seven": {}, "eight": {}, "nine": {}, "ten": {} }, "W": { "one": {}, "two": {}, "three": {}, "four": {}, "five": {}, "six": {}, "seven": {}, "eight": {}, "nine": {}, "ten": {} }, "Th": { "one": {}, "two": {}, "three": { "courseCode": ["HSS F222"], "courseName": "Linguistics", "sectionRoom": "J120", "numHours": { "$numberInt": "1" }, "section": "L1" }, "four": {}, "five": {}, "six": {}, "seven": {}, "eight": {}, "nine": {}, "ten": {} }, "F": { "one": {}, "two": {}, "three": {}, "four": { "courseCode": ["BIO F110"], "courseName": "Biology Laboratory", "sectionRoom": "A122", "numHours": { "$numberInt": "2" }, "section": "L1" }, "five": { "courseCode": ["BIO F110"], "courseName": "Biology Laboratory", "sectionRoom": "A122", "numHours": { "$numberInt": "2" }, "section": "L1" }, "six": {}, "seven": {}, "eight": {}, "nine": {}, "ten": {} }, "S": { "one": {}, "two": {}, "three": { "courseCode": ["HSS F222"], "courseName": "Linguistics", "sectionRoom": "J120", "numHours": { "$numberInt": "1" }, "section": "L1" }, "four": {}, "five": {}, "six": {}, "seven": {}, "eight": {}, "nine": {}, "ten": {} } }, "username": "fddfgd", "date": { "$date": { "$numberLong": "1591717314912" } }} +listOfUsernames = ["Mike Hunt", "Ben Dover", "Phil M'Crack", "Mike Oxlong", "Hue Janus", "Jennah Tillias", "Ivan Tufaq", "Mike Hock"] +branch = ["CS","ECE","EEE","ENI","PHY","CHEM","ECO","BIO","CHE","CE","CHEM","PHA"] +year = [1,2,3,4,5] + +START_USER = 0x5ee5fc309e6606d76e9c0e83 +END_USER = 0x5ee5fc309e6606d76e9c1000 + + +fullarray = [] +delta = timedelta(days=random.randint(0, 180), + seconds=random.randint(0, 86400)) +creation_date = datetime.now(tz=timezone.utc) - delta +seconds = (creation_date - + datetime(1970, 1, 1, tzinfo=timezone.utc)).total_seconds() +for k in year: + branch = permutation(branch) + for j in branch: + listOfUsernames = permutation(listOfUsernames) + for i in listOfUsernames: + ttt = copy.deepcopy(tt) + ttt['branch'] = [j] + ttt['year'] = k + ttt['username'] = i + ttt['date'] = { + 'date':{ + '$numberLong': f"{int(seconds)}{random.randint(1,999):03}" + } + } + user = random.randint(START_USER,END_USER) + ttt['ownerId'] = { + "$oid": f'{user:x}' + } + fullarray.append(json.dumps(ttt)) + +with open('./data/ttfile.json','w+') as f: + for i in fullarray: + f.writelines(i+',') + + diff --git a/client/.prettierrc b/client/.prettierrc new file mode 100644 index 0000000..f6ca428 --- /dev/null +++ b/client/.prettierrc @@ -0,0 +1,6 @@ +{ + "trailingComma": "es5", + "tabWidth": 2, + "semi": false, + "singleQuote": false +} diff --git a/client/package.json b/client/package.json index 494bac7..d1e8942 100644 --- a/client/package.json +++ b/client/package.json @@ -3,33 +3,33 @@ "version": "0.1.0", "private": true, "dependencies": { - "@material-ui/core": "^4.9.11", - "@material-ui/icons": "^4.9.1", - "@material-ui/lab": "^4.0.0-alpha.52", - "@testing-library/jest-dom": "^5.5.0", - "@testing-library/react": "^10.0.2", - "@testing-library/user-event": "^10.0.2", - "@types/number-to-words": "^1.2.0", - "axios": "^0.19.2", - "history": "^4.10.1", - "html2canvas": "^1.0.0-rc.5", - "js-cookie": "^2.2.1", + "@material-ui/core": "^4.12.3", + "@material-ui/icons": "^4.11.2", + "@material-ui/lab": "^4.0.0-alpha.60", + "@testing-library/jest-dom": "^5.14.1", + "@testing-library/react": "^12.0.0", + "@testing-library/user-event": "^13.2.1", + "@types/number-to-words": "^1.2.1", + "axios": "^0.21.1", + "history": "^5.0.1", + "html2canvas": "^1.3.2", + "js-cookie": "^3.0.0", "materialize-css": "^1.0.0", "number-to-words": "^1.2.4", - "react": "^16.13.1", - "react-axios": "^2.0.3", - "react-dom": "^16.13.1", - "react-redux": "^7.2.0", - "react-router-dom": "^5.1.2", - "react-scripts": "3.4.1", - "react-select": "^3.1.0", + "react": "^17.0.2", + "react-axios": "^2.0.5", + "react-dom": "^17.0.2", + "react-redux": "^7.2.4", + "react-router-dom": "^5.2.0", + "react-scripts": "^4.0.3", + "react-select": "^4.3.1", "react-select-tile": "^1.0.10", - "react-tabs": "^3.1.0", - "redux": "^4.0.5", - "redux-devtools-extension": "^2.13.8", + "react-tabs": "^3.2.2", + "redux": "^4.1.1", + "redux-devtools-extension": "^2.13.9", "redux-thunk": "^2.3.0", "use-axios-react": "^0.2.3", - "victory": "^34.1.3" + "victory": "^35.10.1" }, "scripts": { "start": "react-scripts start", diff --git a/client/src/App.js b/client/src/App.js index 5a853a1..ab6e8d8 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -29,13 +29,15 @@ const App = () => { - - - - - - - + +
+ + + + + + +
); diff --git a/client/src/Timetable.json b/client/src/Timetable.json index 4d416c6..6cb35f5 100644 --- a/client/src/Timetable.json +++ b/client/src/Timetable.json @@ -1,381 +1,416 @@ { - "BIO F110": { - "name": "Biology Laboratory", + "BIO F215": { + "name": "Biophysics", "sections": { "L1": { "instructors": [ - "Gireesha T Mohannath" + "DEBASHREE B" ], "sched": [ { - "room": "A122", + "room": "G101", "days": [ + "M", + "W", "F" ], "hours": [ - 4, - 5 - ] - } - ] - }, - "L2": { - "instructors": [ - "Minali Singh" - ], - "sched": [ - { - "room": "A122", - "days": [ - "Th" - ], - "hours": [ - 4, - 5 + 9 ] } ] }, - "L3": { + "T1": { "instructors": [ - "Vidya Rajesh" + "Syeda Sabiha Sultana Lubna" ], "sched": [ { - "room": "A122", + "room": "G101", "days": [ "T" ], "hours": [ - 4, - 5 + 7 ] } ] - }, - "L4": { + } + }, + "compre": { + "date": "09/05", + "session": "FN" + }, + "midsem": { + "date": "11/03", + "time": "9.00am-10.30am" + } + }, + "BIO F241": { + "name": "Ecology & Environmental Science", + "sections": { + "L1": { "instructors": [ - "PIYUSH KHANDELIA" + "P SANKAR GANESH" ], "sched": [ { - "room": "A122", + "room": "G101", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 4, - 5 + 3 ] } ] }, - "L5": { + "T1": { "instructors": [ - "Aishwarya Natarajan" + "Anand N" ], "sched": [ { - "room": "A122", + "room": "F201", "days": [ - "W" + "T" ], "hours": [ - 4, - 5 + 9 ] } ] - }, - "L6": { + } + }, + "compre": { + "date": "19/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "9.00am-10.30am" + } + }, + "BIO F242": { + "name": "Introduction to Bioinformatics", + "sections": { + "L1": { "instructors": [ - "Anne Lohitha Alias Anuhya" + "SHUVADEEP MAITY" ], "sched": [ { - "room": "A122", + "room": "G101", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 7, - 8 + 2 ] } ] }, - "L7": { + "T1": { "instructors": [ - "Vivek Sharma" + "K.Vaishali" ], "sched": [ { - "room": "A122", + "room": "G101", "days": [ - "M" + "T" ], "hours": [ - 7, - 8 + 1 ] } ] - }, - "L8": { + } + }, + "compre": { + "date": "11/05", + "session": "AN" + }, + "midsem": { + "date": "12/03", + "time": "11.00am-12.30pm" + } + }, + "BIO F243": { + "name": "Genetics", + "sections": { + "L1": { "instructors": [ - "Aruku Dazo Vadeo" + "NAGA MOHAN K" ], "sched": [ { - "room": "A122", + "room": "G101", "days": [ - "F" + "T", + "Th", + "S" ], "hours": [ - 7, - 8 + 2 ] } ] }, - "L9": { + "T1": { "instructors": [ - "Piyush Khandelia" + "Anne Lohitha Alias Anuhya" ], "sched": [ { - "room": "A122", + "room": "G101", "days": [ - "W" + "Th" ], "hours": [ - 7, - 8 + 1 ] } ] - }, - "L10": { + } + }, + "compre": { + "date": "17/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "11.00am-12.30pm" + } + }, + "BIO F244": { + "name": "Instru Methods of Anal", + "sections": { + "L1": { "instructors": [ - "Bakhya Shree Gb" + "V Ramakrishna" ], "sched": [ { - "room": "A122", + "room": "F201", "days": [ - "S" + "Th" ], "hours": [ - 4, - 5 + 9 ] } ] }, - "L11": { + "P1": { "instructors": [ - "Anne Lohitha Alias Anuhya" + "K PRANAV NARAYAN", + "Aishwarya Natarajan", + "Ali Akbar Shoukat Safdari", + "Devarakonda Himaja", + "Monica", + "Raunak Sharma", + "Sharayu Umakant Ghodesw", + "V Ramakrishna", + "Vidya Rajesh" ], "sched": [ { - "room": "A122", + "room": "B108", "days": [ - "Th" + "M", + "W" ], "hours": [ - 7, - 8 + 8, + 9, + 10 ] } ] } }, "compre": { - "date": "30/04", - "session": "FN" + "date": "07/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "3.30pm-5.00pm" } }, - "BIO F111": { - "name": "General Biology", + "BIO F266": { + "name": "Study Project", "sections": { "L1": { "instructors": [ - "Pragya Komal", - "Suman Kapur" + "P SANKAR GANESH" ], - "sched": [ - { - "room": "F104", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 3 - ] - } - ] - }, - "L2": { + "sched": [] + } + } + }, + "BIO F341": { + "name": "Developmental Biology", + "sections": { + "L1": { "instructors": [ - "K PRANAV NARAYAN", - "Naga Mohan K" + "VIVEK SHARMA", + "K Pranav Narayan" ], "sched": [ { - "room": "F102", + "room": "G101", "days": [ "M", "W", "F" ], "hours": [ - 9 + 5 ] } ] }, "T1": { "instructors": [ - "Debashree B" + "Shraddha Tripathi" ], "sched": [ { - "room": "F203", + "room": "G101", "days": [ - "M" + "T" ], "hours": [ - 1 + 8 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "14/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "3.30pm-5.00pm" + } + }, + "BIO F342": { + "name": "Immunology", + "sections": { + "L1": { "instructors": [ - "P Sankar Ganesh" + "VIDYA RAJESH" ], "sched": [ { - "room": "G204", + "room": "G101", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 1 + 4 ] } ] }, - "T3": { + "T1": { "instructors": [ - "Pragya Komal" + "Sushma S Kumar" ], "sched": [ { - "room": "F201", + "room": "G101", "days": [ - "M" + "Th" ], "hours": [ - 1 + 7 ] } ] - }, - "T4": { + } + }, + "compre": { + "date": "21/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "9.00am-10.30am" + } + }, + "BIO F366": { + "name": "Laboratory Project", + "sections": { + "L1": { "instructors": [ - "Vidya Rajesh" + "P SANKAR GANESH" ], - "sched": [ - { - "room": "F207", - "days": [ - "M" - ], - "hours": [ - 1 - ] - } - ] - }, - "T5": { - "instructors": [ - "Ruchi Jain Dey" - ], - "sched": [ - { - "room": "F202", - "days": [ - "M" - ], - "hours": [ - 1 - ] - } - ] - }, - "T6": { + "sched": [] + } + } + }, + "BIO F367": { + "name": "Laboratory Project", + "sections": { + "L1": { "instructors": [ - "K Pranav Narayan" + "P SANKAR GANESH" ], - "sched": [ - { - "room": "G208", - "days": [ - "M" - ], - "hours": [ - 1 - ] - } - ] - }, - "T7": { + "sched": [] + } + } + }, + "BIO F376": { + "name": "Design Project", + "sections": { + "L1": { "instructors": [ - "K Pranav Narayan" + "DEBASHREE B" ], - "sched": [ - { - "room": "F201", - "days": [ - "W" - ], - "hours": [ - 6 - ] - } - ] - }, - "T8": { + "sched": [] + } + } + }, + "BIO F377": { + "name": "Design Project", + "sections": { + "L1": { "instructors": [ - "Suman Kapur" + "DEBASHREE B" ], - "sched": [ - { - "room": "G206", - "days": [ - "M" - ], - "hours": [ - 1 - ] - } - ] - }, - "T9": { + "sched": [] + } + } + }, + "BIO F421": { + "name": "Enzymology", + "sections": { + "L1": { "instructors": [ - "Naga Mohan K" + "TRINATH JAMMA", + "Jayati Ray Dutta" ], "sched": [ { - "room": "G202", + "room": "G102", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 1 + 2 ] } ] @@ -383,89 +418,55 @@ }, "compre": { "date": "11/05", - "session": "AN" + "session": "FN" }, "midsem": { - "date": "5/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "9.00am-10.30am" } }, - "BIO F215": { - "name": "Biophysics", + "BIO F451": { + "name": "Bioprocess Technology", "sections": { "L1": { "instructors": [ - "DEBASHREE B" + "KIRTIMAAN SYAL" ], "sched": [ { - "room": "G103", + "room": "G101", "days": [ "M", "W", "F" ], "hours": [ - 9 - ] - } - ] - }, - "T1": { - "instructors": [ - "Syeda Sabiha Sultana Lubna" - ], - "sched": [ - { - "room": "F203", - "days": [ - "F" - ], - "hours": [ - 1 + 7 ] } ] } }, "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "BIO F216": { - "name": "Waste, Sanitation and Solid Waste Management", - "sections": { - "L1": { - "instructors": [ - "P SANKAR GANESH" - ], - "sched": [] - } - }, - "compre": { - "date": "30/04", - "session": "FN" + "date": "10/05", + "session": "AN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "11/03", + "time": "3.30pm-5.00pm" } }, - "BIO F241": { - "name": "Ecology & Environmental Science", + "BIO G523": { + "name": "Adv & Applied Microbio", "sections": { "L1": { "instructors": [ - "P SANKAR GANESH" + "JAYATI RAY DUTTA", + "Ruchi Jain Dey" ], "sched": [ { - "room": "G103", + "room": "G101", "days": [ "T", "Th", @@ -477,18 +478,22 @@ } ] }, - "T1": { + "P1": { "instructors": [ - "P Sankar Ganesh" + "Naresh Patnaik", + "Pranay Amruth Maroju", + "Sakhare Kalyani Rajesh" ], "sched": [ { - "room": "G103", + "room": "A123", "days": [ - "S" + "M", + "W" ], "hours": [ - 5 + 2, + 3 ] } ] @@ -496,27 +501,28 @@ }, "compre": { "date": "12/05", - "session": "AN" + "session": "FN" }, "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" + "date": "11/03", + "time": "1.30pm-3.00pm" } }, - "BIO F242": { - "name": "Introduction to Bioinformatics", + "BIO G532": { + "name": "Biostatistics and Biomodelling", "sections": { "L1": { "instructors": [ - "V RAMAKRISHNA" + "V RAMAKRISHNA", + "Sridev Mohapatra" ], "sched": [ { - "room": "G103", + "room": "G101", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 5 @@ -524,18 +530,21 @@ } ] }, - "T1": { + "P1": { "instructors": [ - "I Shivkumar" + "I Shivkumar", + "Vartika Singh", + "Shibashish Mund" ], "sched": [ { - "room": "G103", + "room": "A001", "days": [ - "Th" + "F" ], "hours": [ - 1 + 2, + 3 ] } ] @@ -546,78 +555,75 @@ "session": "FN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" + "date": "14/03", + "time": "3.30pm-5.00pm" } }, - "BIO F243": { - "name": "Genetics", + "BIO G542": { + "name": "Advanced Cell and Molecular Biology", "sections": { "L1": { "instructors": [ - "PIYUSH KHANDELIA", - "Gireesha T Mohannath" + "PIYUSH KHANDELIA" ], "sched": [ { - "room": "G103", + "room": "G102", "days": [ "T", - "Th" - ], - "hours": [ - 5 - ] - }, - { - "room": "G103", - "days": [ + "Th", "S" ], "hours": [ - 1 + 3 ] } ] }, - "T1": { + "P1": { "instructors": [ - "Piyush Khandelia" + "Dhansri Krishnamurthy", + "Mohammad Mehaboob Subh", + "Namita Pandey" ], "sched": [ { - "room": "G103", + "room": "A123", "days": [ - "T" + "M", + "W" ], "hours": [ - 1 + 8, + 9 ] } ] } }, "compre": { - "date": "08/05", + "date": "17/05", "session": "FN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "15/03", + "time": "9.00am-10.30am" } }, - "BIO F244": { - "name": "Instru Methods of Anal", + "BIO G643": { + "name": "Plant Biotechnology", "sections": { "L1": { "instructors": [ - "Debashree B" + "SRIDEV MOHAPATRA" ], "sched": [ { - "room": "G103", + "room": "G102", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ 4 @@ -627,90 +633,54 @@ }, "P1": { "instructors": [ - "SRIDEV MOHAPATRA", - "Aishwarya Natarajan", - "Anand N", - "Devarakonda Himaja", - "Dwaipayan Bhattacharya", - "Monica", - "Raja Gopalan N S", - "Ruchi Jain Dey", - "Trinath Jamma", - "V Ramakrishna" + "Nikhil P T", + "Poosala Ramya Sri", + "Jayasree" ], "sched": [ { - "room": "B108", + "room": "A123", "days": [ "T", "Th" ], "hours": [ 7, - 8, - 9 + 8 ] } ] } }, "compre": { - "date": "02/05", + "date": "20/05", "session": "FN" }, "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "BIO F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "PIYUSH KHANDELIA" - ], - "sched": [] - } + "date": "16/03", + "time": "1.30pm-3.00pm" } }, - "BIO F341": { - "name": "Developmental Biology", + "BIOT F346": { + "name": "Genomics", "sections": { "L1": { "instructors": [ - "K PRANAV NARAYAN", - "Vivek Sharma" + "GIREESHA T MOHANNATH" ], "sched": [ { - "room": "G103", + "room": "G101", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ 3 ] } ] - }, - "T1": { - "instructors": [ - "Vivek Sharma" - ], - "sched": [ - { - "room": "F203", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] } }, "compre": { @@ -718,187 +688,215 @@ "session": "AN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "10/03", + "time": "11.00am-12.30pm" } }, - "BIO F342": { - "name": "Immunology", + "BIOT F422": { + "name": "Nanobiotechology", "sections": { "L1": { "instructors": [ - "TRINATH JAMMA" + "SUMAN KAPUR" ], "sched": [ { - "room": "G103", + "room": "G106", "days": [ "T", "Th", "S" ], "hours": [ - 2 - ] - } - ] - }, - "T1": { - "instructors": [ - "Kotwal Shifa Bushra" - ], - "sched": [ - { - "room": "G203", - "days": [ - "M" - ], - "hours": [ - 1 + 3 ] } ] } }, "compre": { - "date": "04/05", + "date": "19/05", "session": "AN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "11.00am-12.30pm" } }, - "BIO F366": { - "name": "Laboratory Project", + "BITS C790T": { + "name": "Independent Study", "sections": { "L1": { "instructors": [ - "PIYUSH KHANDELIA" + "V V KRISHNA VENUGANTI" ], "sched": [] } } }, - "BIO F367": { - "name": "Laboratory Project", + "BITS C791T": { + "name": "Teaching Practice I", "sections": { "L1": { "instructors": [ - "PIYUSH KHANDELIA" + "V V KRISHNA VENUGANTI" ], "sched": [] } } }, - "BIO F376": { - "name": "Design Project", + "BITS C797T": { + "name": "Phd Seminar", "sections": { "L1": { "instructors": [ - "PIYUSH KHANDELIA" + "V V KRISHNA VENUGANTI" ], "sched": [] } } }, - "BIO F377": { - "name": "Design Project", + "BITS C799T": { + "name": "Phd Thesis", "sections": { "L1": { "instructors": [ - "PIYUSH KHANDELIA" + "V V KRISHNA VENUGANTI" + ], + "sched": [] + } + } + }, + "BITS E593": { + "name": "Reading Course I", + "sections": { + "L1": { + "instructors": [ + "V V KRISHNA VENUGANTI" + ], + "sched": [] + } + } + }, + "BITS E594": { + "name": "Reading Course II", + "sections": { + "L1": { + "instructors": [ + "V V KRISHNA VENUGANTI" ], "sched": [] } } }, - "BIO G513": { - "name": "Microbial Ferment Techno", + "BITS E661": { + "name": "Research Methodology I", "sections": { "L1": { "instructors": [ - "JAYATI RAY DUTTA" + "K SRINIVASA RAJU", + "Pragya Komal", + "Vijay Kumar Tadakamalla" ], "sched": [ { - "room": "G104", + "room": "F201", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 4 + 5 + ] + } + ] + } + } + }, + "BITS E793T": { + "name": "Practice Lect Series I", + "sections": { + "L1": { + "instructors": [ + "V V KRISHNA VENUGANTI" + ], + "sched": [] + } + } + }, + "BITS F219": { + "name": "Process Engineering", + "sections": { + "L1": { + "instructors": [ + "SWATI BISWAS" + ], + "sched": [ + { + "room": "G203", + "days": [ + "M", + "W" + ], + "hours": [ + 3 ] } ] }, "P1": { "instructors": [ - "S K Venkata Manjari", - "Mohammed Wasil S" + "Swati Biswas", + "Asif Mohd Itoo", + "Jagdish Chand", + "Kumbham Soniya" ], "sched": [ { - "room": "A123", + "room": "LAB", "days": [ - "T", - "Th" + "W" ], "hours": [ - 6, - 7 + 8, + 9 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "BIO G515": { - "name": "Stem Cell and Regenerative Biology", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "PRAGYA KOMAL", - "Naga Mohan K" + "Srinivas Prasad K", + "Asif Mohd Itoo", + "Jagdish Chand", + "Kumbham Soniya" ], "sched": [ { - "room": "G104", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 3 + 8, + 9 ] } ] }, - "P1": { + "T1": { "instructors": [ - "Pranay Amruth Maroju", - "Minali Singh" + "Swati Biswas" ], "sched": [ { - "room": "A121", + "room": "G203", "days": [ "F" ], "hours": [ - 4, - 5 + 3 ] } ] @@ -906,128 +904,153 @@ }, "compre": { "date": "06/05", - "session": "AN" + "session": "FN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "10/03", + "time": "9.00am-10.30am" } }, - "BIO G523": { - "name": "Adv & Applied Microbio", + "BITS F225": { + "name": "Environmental Studies", "sections": { "L1": { "instructors": [ - "JAYATI RAY DUTTA" + "ANMALA JAGADEESH", + "D Purnima", + "Madhusmita Sahoo", + "Piyush Khandelia" ], "sched": [ { - "room": "G104", + "room": "F102", "days": [ "M", "W", "F" ], "hours": [ - 3 + 6 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "13/05", + "session": "AN" + }, + "midsem": { + "date": "14/03", + "time": "1.30pm-3.00pm" + } + }, + "BITS F312": { + "name": "Neural Networks and Fuzzy Logic", + "sections": { + "L1": { "instructors": [ - "Naresh Patnaik", - "Rolly Kumari" + "RAJESH KUMAR TRIPATHY", + "Shaswati Dash" ], "sched": [ { - "room": "A123", + "room": "F207", "days": [ - "T", - "Th" + "M", + "W", + "F" ], "hours": [ - 8, - 9 + 7 ] } ] } }, "compre": { - "date": "01/05", + "date": "10/05", "session": "AN" }, "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" + "date": "11/03", + "time": "3.30pm-5.00pm" } }, - "BIO G542": { - "name": "Advanced Cell and Molecular Biology", + "BITS F314": { + "name": "Game Theory and its Applications", "sections": { "L1": { "instructors": [ - "VIDYA RAJESH" + "DURGESH C PATHAK" ], "sched": [ { - "room": "G106", + "room": "F207", "days": [ "T", "Th", "S" ], "hours": [ - 2 + 5 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "BITS F319": { + "name": "Negotiation Skills and Techniques", + "sections": { + "L1": { "instructors": [ - "R Karthiya", - "Dhansri Krishnamurthy" + "R RAGHUNATHAN" ], "sched": [ { - "room": "A121", + "room": "J119", "days": [ - "M", - "W" + "T", + "Th" ], "hours": [ - 4, - 5 + 2 ] } ] } }, "compre": { - "date": "04/05", - "session": "AN" + "date": "17/05", + "session": "FN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "15/03", + "time": "9.00am-10.30am" } }, - "BIO G643": { - "name": "Plant Biotechnology", + "BITS F327": { + "name": "Artificial Intelligence For Robotics", "sections": { "L1": { "instructors": [ - "GIREESHA T MOHANNATH", - "Sridev Mohapatra" + "ABHISHEK SARKAR" ], "sched": [ { - "room": "G104", + "room": "G106", "days": [ - "M", - "W", - "F" + "T", + "Th" ], "hours": [ 2 @@ -1037,3896 +1060,658 @@ }, "P1": { "instructors": [ - "Gireesha T Mohannath", - "Gargi Prasad S", - "Neha Priyadarshini", - "Sridev Mohapatra" + "Abhishek Sarkar", + "George Yuvaraj" ], "sched": [ { - "room": "A123", + "room": "LAB", "days": [ - "M", - "W" + "T" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] } }, "compre": { - "date": "09/05", - "session": "AN" + "date": "17/05", + "session": "FN" }, "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "9.00am-10.30am" } }, - "BIOT F347": { - "name": "Immunotechnology", + "BITS F399": { + "name": "Humanistic Theo of Sc & Tech", "sections": { "L1": { "instructors": [ - "SUMAN KAPUR" + "BISWANATH DASH" ], "sched": [ { - "room": "G103", + "room": "J120", "days": [ "M", "W", "F" ], "hours": [ - 8 + 9 ] } ] } }, "compre": { - "date": "14/05", + "date": "09/05", "session": "AN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "11/03", + "time": "11.00am-12.30pm" } }, - "BITS C790T": { - "name": "Independent Study", + "BITS F412": { + "name": "Practice School II", "sections": { "L1": { "instructors": [ - "V V KRISHNA VENUGANTI" + "S P REGALLA (PS DEAN)" ], "sched": [] } } }, - "BITS C791T": { - "name": "Teaching Practice I", + "BITS F413": { + "name": "Practice School II", "sections": { "L1": { "instructors": [ - "V V KRISHNA VENUGANTI" + "S P REGALLA (PS DEAN)" ], "sched": [] } } }, - "BITS C797T": { - "name": "Phd Seminar", + "BITS F415": { + "name": "Introduction to Mems", "sections": { "L1": { "instructors": [ - "V V KRISHNA VENUGANTI" + "SANKET GOEL" + ], + "sched": [ + { + "room": "I112", + "days": [ + "T", + "Th", + "S" + ], + "hours": [ + 3 + ] + } + ] + }, + "P1": { + "instructors": [ + "Sanket Goel", + "Sohan Dudala" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "T" + ], + "hours": [ + 8, + 9 + ] + } + ] + }, + "P2": { + "instructors": [ + "Sanket Goel", + "Sohan Dudala" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "Th" + ], + "hours": [ + 8, + 9 + ] + } + ] + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "BITS F421T": { + "name": "Thesis", + "sections": { + "L1": { + "instructors": [ + "SRIDHAR RAJU" ], "sched": [] } } }, - "BITS C799T": { - "name": "Phd Thesis", + "BITS F422T": { + "name": "Thesis", "sections": { "L1": { "instructors": [ - "V V KRISHNA VENUGANTI" + "SRIDHAR RAJU" ], "sched": [] } } }, - "BITS E661": { - "name": "Research Methodology I", + "BITS F423T": { + "name": "Thesis", "sections": { "L1": { "instructors": [ - "V V KRISHNA VENUGANTI", - "Aswathy Raveendran", - "V Vinayaka Ram" + "SRIDHAR RAJU" ], - "sched": [ - { - "room": "G204", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 3 - ] - } - ] + "sched": [] } } }, - "BITS E793T": { - "name": "Practice Lect Series I", + "BITS F424T": { + "name": "Thesis", "sections": { "L1": { "instructors": [ - "V V KRISHNA VENUGANTI" + "SRIDHAR RAJU" ], "sched": [] } } }, - "BITS F110": { - "name": "Engineering Graphics", + "BITS F428": { + "name": "Essentials of Strate Mgt", "sections": { "L1": { "instructors": [ - "MOHAN S C" + "SWATI ALOK" ], "sched": [ { - "room": "F105", + "room": "J121", "days": [ + "M", + "W", "F" ], "hours": [ - 1 + 9 ] } ] - }, - "L2": { + } + }, + "compre": { + "date": "09/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "11.00am-12.30pm" + } + }, + "BITS F441": { + "name": "Robotics", + "sections": { + "L1": { "instructors": [ - "Arshad Javed" + "YV DASESWARA RAO" ], "sched": [ { - "room": "F102", + "room": "G105", "days": [ + "M", + "W", "F" ], "hours": [ - 1 + 3 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "BITS F442": { + "name": "Remote Sens & Image Proc", + "sections": { + "L1": { "instructors": [ - "TO BE ANNOUNCED", - "Arshad Javed" + "K RAJITHA" ], "sched": [ { - "room": "D208 B", + "room": "F202", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 4, - 5 + 2 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "BITS F462": { + "name": "Renewable Energy", + "sections": { + "L1": { "instructors": [ - "M Mounika", - "Amol Vuppuluri" + "M SRINIVAS" ], "sched": [ { - "room": "D208 B", + "room": "G107", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 7, - 8 + 3 ] } ] - }, - "P3": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "BITS F463": { + "name": "Cryptography", + "sections": { + "L1": { "instructors": [ - "Athira Gopinathan", - "K Monika" + "G GEETHAKUMARI", + "Chaitra C R", + "Priyanka Rushikesh Chaudh" ], "sched": [ { - "room": "D208 B", + "room": "F106", "days": [ - "W" + "T", + "Th", + "S" ], "hours": [ - 4, - 5 + 3 ] } ] - }, - "P4": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "BITS F464": { + "name": "Machine Learning", + "sections": { + "L1": { "instructors": [ - "Bandhan Bandhu Majumdar", - "Gayatri Vineela M" + "PARESH SAXENA", + "K Simran", + "Nida Fatima" ], "sched": [ { - "room": "D208 B", + "room": "F106", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 4, - 5 - ] - } - ] - }, - "P5": { - "instructors": [ - "Radha Kiranmaye Bandlamu", - "Pardha Saradhi Gurugubelli" - ], - "sched": [ - { - "room": "D208 B", - "days": [ - "Th" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "P6": { - "instructors": [ - "Sk Rahaman", - "Pavan Kumar P" - ], - "sched": [ - { - "room": "D208 B", - "days": [ - "F" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "P7": { - "instructors": [ - "Jittin Varghese", - "Piyush Chandra Verma" - ], - "sched": [ - { - "room": "D208 B", - "days": [ - "S" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "P8": { - "instructors": [ - "Sandra Maria Cherian", - "Petla Sivateja" - ], - "sched": [ - { - "room": "D208 B", - "days": [ - "W" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "P9": { - "instructors": [ - "Anasua Guharay", - "Jagan Mohan Ponnada" - ], - "sched": [ - { - "room": "D208 B", - "days": [ - "F" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "T1": { - "instructors": [ - "K Rajitha" - ], - "sched": [ - { - "room": "F201", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T2": { - "instructors": [ - "Ch Bala Venkata Hareen" - ], - "sched": [ - { - "room": "F202", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T3": { - "instructors": [ - "R Kruthi Kiran" - ], - "sched": [ - { - "room": "G106", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T4": { - "instructors": [ - "Uppari Ramakrishna" - ], - "sched": [ - { - "room": "G207", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T5": { - "instructors": [ - "Arshad Javed" - ], - "sched": [ - { - "room": "G204", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T6": { - "instructors": [ - "Amol Vuppuluri" - ], - "sched": [ - { - "room": "G206", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T7": { - "instructors": [ - "Pavan Kumar P" - ], - "sched": [ - { - "room": "G208", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T8": { - "instructors": [ - "Piyush Chandra Verma" - ], - "sched": [ - { - "room": "F207", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T9": { - "instructors": [ - "Pardha Saradhi Gurugubelli" - ], - "sched": [ - { - "room": "G202", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "BITS F111": { - "name": "Thermodynamics", - "sections": { - "L1": { - "instructors": [ - "D PURNIMA" - ], - "sched": [ - { - "room": "F104", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 3 - ] - } - ] - }, - "L2": { - "instructors": [ - "N Jalaiah" - ], - "sched": [ - { - "room": "F105", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 3 - ] - } - ] - }, - "T1": { - "instructors": [ - "Satyapaul Singh Amarthaluri" - ], - "sched": [ - { - "room": "F203", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T2": { - "instructors": [ - "Pankaj Kumar" - ], - "sched": [ - { - "room": "G206", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T3": { - "instructors": [ - "Ramesh Babu A" - ], - "sched": [ - { - "room": "G104", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T4": { - "instructors": [ - "Nandini Bhandaru" - ], - "sched": [ - { - "room": "G102", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T5": { - "instructors": [ - "N Jalaiah" - ], - "sched": [ - { - "room": "F207", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T6": { - "instructors": [ - "M Srinivas" - ], - "sched": [ - { - "room": "F208", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T7": { - "instructors": [ - "Supradeepan K" - ], - "sched": [ - { - "room": "G205", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T8": { - "instructors": [ - "KRC Murthy" - ], - "sched": [ - { - "room": "F107", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T9": { - "instructors": [ - "G R Sabareesh" - ], - "sched": [ - { - "room": "F108", - "days": [ - "T", - "Th" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "06/05", - "session": "FN" - }, - "midsem": { - "date": "4/3", - "time": "11.00 -12.30 PM" - } - }, - "BITS F112": { - "name": "Technical Report Writing", - "sections": { - "L1": { - "instructors": [ - "MG PRASUNA" - ], - "sched": [ - { - "room": "F108", - "days": [ - "M", - "W" - ], - "hours": [ - 6 - ] - } - ] - }, - "L2": { - "instructors": [ - "MG Prasuna" - ], - "sched": [ - { - "room": "F108", - "days": [ - "T", - "Th" - ], - "hours": [ - 7 - ] - } - ] - }, - "L3": { - "instructors": [ - "Maya Vinay" - ], - "sched": [ - { - "room": "F107", - "days": [ - "M", - "W" - ], - "hours": [ - 6 - ] - } - ] - }, - "L4": { - "instructors": [ - "Maya Vinay" - ], - "sched": [ - { - "room": "F107", - "days": [ - "M", - "W" - ], - "hours": [ - 2 - ] - } - ] - }, - "L5": { - "instructors": [ - "Aruna Lolla" - ], - "sched": [ - { - "room": "F108", - "days": [ - "M", - "W" - ], - "hours": [ - 2 - ] - } - ] - }, - "L6": { - "instructors": [ - "Aruna Lolla" - ], - "sched": [ - { - "room": "F107", - "days": [ - "T", - "Th" - ], - "hours": [ - 7 - ] - } - ] - } - }, - "compre": { - "date": "15/05", - "session": "FN" - }, - "midsem": { - "date": "1/3", - "time": "3.30 - 5.00 PM" - } - }, - "BITS F114": { - "name": "General Mathematics II", - "sections": { - "L1": { - "instructors": [ - "A RAMU" - ], - "sched": [ - { - "room": "G101", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 3 - ] - } - ] - }, - "T1": { - "instructors": [ - "A Ramu", - "R Revathi" - ], - "sched": [ - { - "room": "G104", - "days": [ - "T" - ], - "hours": [ - 9 - ] - } - ] - } - }, - "compre": { - "date": "01/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "9.00 - 10.30AM" - } - }, - "BITS F214": { - "name": "Science Tech & Modernity", - "sections": { - "L1": { - "instructors": [ - "BISWANATH DASH" - ], - "sched": [ - { - "room": "J206", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 9 - ] - } - ] - } - }, - "compre": { - "date": "05/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "3.30 - 5.00 PM" - } - }, - "BITS F219": { - "name": "Process Engineering", - "sections": { - "L1": { - "instructors": [ - "SWATI BISWAS" - ], - "sched": [ - { - "room": "G101", - "days": [ - "M", - "W" - ], - "hours": [ - 4 - ] - } - ] - }, - "P1": { - "instructors": [ - "Swati Biswas", - "Kumbham Soniya" - ], - "sched": [ - { - "room": "A022", - "days": [ - "T" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "P2": { - "instructors": [ - "Swati Biswas", - "Bhatt Himanshu Narendraku" - ], - "sched": [ - { - "room": "A022", - "days": [ - "Th" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "T1": { - "instructors": [ - "Swati Biswas" - ], - "sched": [ - { - "room": "G101", - "days": [ - "F" - ], - "hours": [ - 4 - ] - } - ] - } - }, - "compre": { - "date": "02/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "3.30 - 5.00 PM" - } - }, - "BITS F225": { - "name": "Environmental Studies", - "sections": { - "L1": { - "instructors": [ - "KARTHIK CHETAN", - "Anmala Jagadeesh", - "Vivek Sharma" - ], - "sched": [ - { - "room": "F102", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 2 - ] - } - ] - } - }, - "compre": { - "date": "15/05", - "session": "AN" - }, - "midsem": { - "date": "7/3", - "time": "3.30 - 5.00 PM" - } - }, - "BITS F312": { - "name": "Neural Networks and Fuzzy Logic", - "sections": { - "L1": { - "instructors": [ - "RAJESH KUMAR TRIPATHY" - ], - "sched": [ - { - "room": "I210", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 5 - ] - } - ] - } - }, - "compre": { - "date": "08/05", - "session": "FN" - }, - "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" - } - }, - "BITS F313": { - "name": "Multicriterion Dec Making in Engg & Mgmt", - "sections": { - "L1": { - "instructors": [ - "K SRINIVASA RAJU" - ], - "sched": [ - { - "room": "F201", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "BITS F314": { - "name": "Game Theory and its Applications", - "sections": { - "L1": { - "instructors": [ - "DURGESH C PATHAK" - ], - "sched": [ - { - "room": "J120", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 3 - ] - } - ] - } - }, - "compre": { - "date": "01/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" - } - }, - "BITS F319": { - "name": "Negotiation Skills and Techniques", - "sections": { - "L1": { - "instructors": [ - "R RAGHUNATHAN" - ], - "sched": [ - { - "room": "J120", - "days": [ - "T", - "Th" - ], - "hours": [ - 6 - ] - } - ] - } - }, - "compre": { - "date": "15/05", - "session": "FN" - }, - "midsem": { - "date": "7/3", - "time": "1.30 -3.00 PM" - } - }, - "BITS F385": { - "name": "Intro to Gender Studies", - "sections": { - "L1": { - "instructors": [ - "ASWATHY RAVEENDRAN" - ], - "sched": [ - { - "room": "J217", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 7 - ] - } - ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "BITS F399": { - "name": "Humanistic Theo of Sc & Tech", - "sections": { - "L1": { - "instructors": [ - "ASWATHY RAVEENDRAN" - ], - "sched": [ - { - "room": "J119", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 3 - ] - } - ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "BITS F412": { - "name": "Practice School II", - "sections": { - "L1": { - "instructors": [ - "P SANKAR GANESH" - ], - "sched": [] - } - } - }, - "BITS F413": { - "name": "Practice School II", - "sections": { - "L1": { - "instructors": [ - "P SANKAR GANESH" - ], - "sched": [] - } - } - }, - "BITS F415": { - "name": "Introduction to Mems", - "sections": { - "L1": { - "instructors": [ - "SANKET GOEL", - "Satish K Dubey" - ], - "sched": [ - { - "room": "I210", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 7 - ] - } - ] - }, - "P1": { - "instructors": [ - "Sanket Goel", - "A Uday Kumar", - "K Avinash", - "Satish K Dubey", - "Sohan Dudala" - ], - "sched": [ - { - "room": "D208 A", - "days": [ - "T" - ], - "hours": [ - 8, - 9 - ] - } - ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "BITS F417": { - "name": "Micro-fluidics & its App", - "sections": { - "L1": { - "instructors": [ - "SATISH K DUBEY", - "Sanket Goel" - ], - "sched": [ - { - "room": "G206", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - }, - "P1": { - "instructors": [ - "Satish K Dubey", - "Sangam Srikanth", - "Sanket Goel" - ], - "sched": [ - { - "room": "D208 B", - "days": [ - "Th" - ], - "hours": [ - 6, - 7 - ] - } - ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "BITS F421T": { - "name": "Thesis", - "sections": { - "L1": { - "instructors": [ - "A VASAN" - ], - "sched": [] - } - } - }, - "BITS F422T": { - "name": "Thesis", - "sections": { - "L1": { - "instructors": [ - "A VASAN" - ], - "sched": [] - } - } - }, - "BITS F423T": { - "name": "Thesis", - "sections": { - "L1": { - "instructors": [ - "A VASAN" - ], - "sched": [] - } - } - }, - "BITS F424T": { - "name": "Thesis", - "sections": { - "L1": { - "instructors": [ - "A VASAN" - ], - "sched": [] - } - } - }, - "BITS F441": { - "name": "Robotics", - "sections": { - "L1": { - "instructors": [ - "ARSHAD JAVED" - ], - "sched": [ - { - "room": "I210", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 9 - ] - } - ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "BITS F442": { - "name": "Remote Sens & Image Proc", - "sections": { - "L1": { - "instructors": [ - "K RAJITHA" - ], - "sched": [ - { - "room": "F203", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 8 - ] - } - ] - } - }, - "compre": { - "date": "14/05", - "session": "AN" - }, - "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" - } - }, - "BITS F446": { - "name": "Pattern Recognition", - "sections": { - "L1": { - "instructors": [ - "PK THIRUVIKRAMAN" - ], - "sched": [ - { - "room": "G201", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 9 - ] - } - ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "BITS F463": { - "name": "Cryptography", - "sections": { - "L1": { - "instructors": [ - "G GEETHAKUMARI", - "K V V S Pravallika" - ], - "sched": [ - { - "room": "F106", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 8 - ] - } - ] - } - }, - "compre": { - "date": "14/05", - "session": "AN" - }, - "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" - } - }, - "BITS F464": { - "name": "Machine Learning", - "sections": { - "L1": { - "instructors": [ - "NL BHANUMURTHY", - "Mohita Ghildiyal" - ], - "sched": [ - { - "room": "F106", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 10 - ] - } - ] - } - }, - "compre": { - "date": "03/05", - "session": "FN" - }, - "midsem": { - "date": "1/3", - "time": "11.00 -12.30 PM" - } - }, - "BITS F467": { - "name": "Bioethics and Biosafety", - "sections": { - "L1": { - "instructors": [ - "RUCHI JAIN DEY", - "Pragya Komal" - ], - "sched": [ - { - "room": "G104", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 9 - ] - } - ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "BITS G513": { - "name": "Study in Advanced Topics", - "sections": { - "L1": { - "instructors": [ - "V V KRISHNA VENUGANTI" - ], - "sched": [] - } - } - }, - "BITS G529": { - "name": "Research Project I", - "sections": { - "L1": { - "instructors": [ - "V V KRISHNA VENUGANTI" - ], - "sched": [] - } - } - }, - "BITS G539": { - "name": "Research Project II", - "sections": { - "L1": { - "instructors": [ - "V V KRISHNA VENUGANTI" - ], - "sched": [] - } - } - }, - "BITS G540": { - "name": "Research Practice", - "sections": { - "L1": { - "instructors": [ - "V V KRISHNA VENUGANTI" - ], - "sched": [] - } - } - }, - "BITS G562T": { - "name": "Dissertation", - "sections": { - "L1": { - "instructors": [ - "V V KRISHNA VENUGANTI" - ], - "sched": [] - } - } - }, - "BITS G563T": { - "name": "Dissertation", - "sections": { - "L1": { - "instructors": [ - "V V KRISHNA VENUGANTI" - ], - "sched": [] - } - } - }, - "BITS G629T": { - "name": "Dissertation", - "sections": { - "L1": { - "instructors": [ - "V V KRISHNA VENUGANTI" - ], - "sched": [] - } - } - }, - "BITS G639": { - "name": "Practice School", - "sections": { - "L1": { - "instructors": [ - "P SANKAR GANESH" - ], - "sched": [] - } - } - }, - "BITS G649": { - "name": "Reading Course", - "sections": { - "L1": { - "instructors": [ - "V V KRISHNA VENUGANTI" - ], - "sched": [] - } - } - }, - "BITS G661": { - "name": "Research Methodology I", - "sections": { - "L1": { - "instructors": [ - "D PURNIMA", - "Premanath", - "S Aparna", - "Ved Prakash Mishra" - ], - "sched": [ - { - "room": "F203", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 4 - ] - } - ] - } - }, - "compre": { - "date": "04/05", - "session": "FN" - }, - "midsem": { - "date": "3/3", - "time": "9.00 - 10.30AM" - } - }, - "CE F241": { - "name": "Analysis of Structures", - "sections": { - "L1": { - "instructors": [ - "CHANDU PARIMI" - ], - "sched": [ - { - "room": "F109", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - }, - "T1": { - "instructors": [ - "Chandu Parimi" - ], - "sched": [ - { - "room": "F201", - "days": [ - "T" - ], - "hours": [ - 1 - ] - } - ] - }, - "T2": { - "instructors": [ - "Chandu Parimi" - ], - "sched": [ - { - "room": "F201", - "days": [ - "Th" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "12/05", - "session": "AN" - }, - "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" - } - }, - "CE F242": { - "name": "Construction Planning & Tech", - "sections": { - "L1": { - "instructors": [ - "A VASAN" - ], - "sched": [ - { - "room": "F109", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 5 - ] - } - ] - }, - "T1": { - "instructors": [ - "Surya Prakash CH" - ], - "sched": [ - { - "room": "D208 C", - "days": [ - "T" - ], - "hours": [ - 1 - ] - } - ] - }, - "T2": { - "instructors": [ - "Sheik Mohammed Zoheb Na" - ], - "sched": [ - { - "room": "D208 C", - "days": [ - "S" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "08/05", - "session": "FN" - }, - "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" - } - }, - "CE F243": { - "name": "Soil Mechanics", - "sections": { - "L1": { - "instructors": [ - "ANASUA GUHARAY" - ], - "sched": [ - { - "room": "F109", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 4 - ] - } - ] - }, - "P1": { - "instructors": [ - "Syed Mazhar" - ], - "sched": [ - { - "room": "D125", - "days": [ - "M" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "P2": { - "instructors": [ - "G Sachin Chakravart" - ], - "sched": [ - { - "room": "D125", - "days": [ - "W" - ], - "hours": [ - 2, - 3 - ] - } - ] - }, - "P3": { - "instructors": [ - "M Jayatheja" - ], - "sched": [ - { - "room": "D125", - "days": [ - "F" - ], - "hours": [ - 2, - 3 - ] - } - ] - }, - "T1": { - "instructors": [ - "Anasua Guharay" - ], - "sched": [ - { - "room": "F109", - "days": [ - "S" - ], - "hours": [ - 1 - ] - } - ] - }, - "T2": { - "instructors": [ - "Anasua Guharay" - ], - "sched": [ - { - "room": "F109", - "days": [ - "T" - ], - "hours": [ - 7 - ] - } - ] - } - }, - "compre": { - "date": "02/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "CE F244": { - "name": "Highway Engineering", - "sections": { - "L1": { - "instructors": [ - "V VINAYAKA RAM" - ], - "sched": [ - { - "room": "F109", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 5 - ] - } - ] - }, - "P1": { - "instructors": [ - "Vuthipalli Harshitha", - "V Vinayaka Ram" - ], - "sched": [ - { - "room": "WS", - "days": [ - "W" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "P2": { - "instructors": [ - "Vineesha Chundi", - "Bandhan Bandhu Majumdar" - ], - "sched": [ - { - "room": "WS", - "days": [ - "M" - ], - "hours": [ - 2, - 3 - ] - } - ] - }, - "P3": { - "instructors": [ - "Mallikarjun Patil V", - "V Vinayaka Ram" - ], - "sched": [ - { - "room": "WS", - "days": [ - "F" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "T1": { - "instructors": [ - "V Vinayaka Ram" - ], - "sched": [ - { - "room": "F202", - "days": [ - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T2": { - "instructors": [ - "V Vinayaka Ram" - ], - "sched": [ - { - "room": "F201", - "days": [ - "T" - ], - "hours": [ - 7 - ] - } - ] - } - }, - "compre": { - "date": "14/05", - "session": "FN" - }, - "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" - } - }, - "CE F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "PN RAO" - ], - "sched": [] - } - } - }, - "CE F321": { - "name": "Engineering Hydrology", - "sections": { - "L1": { - "instructors": [ - "K SRINIVASA RAJU" - ], - "sched": [ - { - "room": "F109", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 3 - ] - } - ] - }, - "T1": { - "instructors": [ - "K Srinivasa Raju" - ], - "sched": [ - { - "room": "F109", - "days": [ - "F" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "01/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" - } - }, - "CE F342": { - "name": "Water & Wastewater Treat", - "sections": { - "L1": { - "instructors": [ - "MURARI R R VARMA" - ], - "sched": [ - { - "room": "F109", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 2 - ] - } - ] - }, - "P1": { - "instructors": [ - "R Madhuri" - ], - "sched": [ - { - "room": "D108", - "days": [ - "M" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "P2": { - "instructors": [ - "M Naveen Naidu" - ], - "sched": [ - { - "room": "D108", - "days": [ - "W" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "P3": { - "instructors": [ - "T Venkateswarlu" - ], - "sched": [ - { - "room": "D108", - "days": [ - "F" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "T1": { - "instructors": [ - "Murari R R Varma" - ], - "sched": [ - { - "room": "F109", - "days": [ - "M" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "CE F343": { - "name": "Design of Steel Structures", - "sections": { - "L1": { - "instructors": [ - "PN RAO" - ], - "sched": [ - { - "room": "F109", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 3 - ] - } - ] - }, - "T1": { - "instructors": [ - "PN Rao" - ], - "sched": [ - { - "room": "F109", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "CE F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "ARKAMITRA KAR" - ], - "sched": [] - } - } - }, - "CE F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "ARKAMITRA KAR" - ], - "sched": [] - } - } - }, - "CE F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "BANDHAN BANDHU MAJU" - ], - "sched": [] - } - } - }, - "CE F377": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "BANDHAN BANDHU MAJU" - ], - "sched": [] - } - } - }, - "CE F415": { - "name": "Des of Prest Conc Struct", - "sections": { - "L1": { - "instructors": [ - "BAHURUDEEN A" - ], - "sched": [ - { - "room": "F202", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 5 - ] - } - ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "CE F416": { - "name": "Comp Appl in Civil Engg", - "sections": { - "L1": { - "instructors": [ - "ARKAMITRA KAR" - ], - "sched": [ - { - "room": "F203", - "days": [ - "T", - "Th" - ], - "hours": [ - 4 - ] - } - ] - }, - "P1": { - "instructors": [ - "Arkamitra Kar" - ], - "sched": [ - { - "room": "D208 B", - "days": [ - "T", - "Th" - ], - "hours": [ - 8, - 9 - ] - } - ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "CE F420": { - "name": "Intro to Bridge Engg", - "sections": { - "L1": { - "instructors": [ - "PN RAO" - ], - "sched": [ - { - "room": "F201", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 9 - ] - } - ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "CE F423": { - "name": "Green Build & Ener Conse", - "sections": { - "L1": { - "instructors": [ - "MURARI R R VARMA" - ], - "sched": [ - { - "room": "F201", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 5 - ] - } - ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "CE F425": { - "name": "Airport Rail & Waterways", - "sections": { - "L1": { - "instructors": [ - "BANDHAN BANDHU MAJU" - ], - "sched": [ - { - "room": "F109", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 7 - ] - } - ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "CE F431": { - "name": "Prin of Geo Info Syst", - "sections": { - "L1": { - "instructors": [ - "K RAJITHA" - ], - "sched": [ - { - "room": "F202", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - }, - "P1": { - "instructors": [ - "K Rajitha" - ], - "sched": [ - { - "room": "D208 C", - "days": [ - "F" - ], - "hours": [ - 4, - 5 - ] - } - ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "CE F432": { - "name": "Structural Dynamics", - "sections": { - "L1": { - "instructors": [ - "CHANDU PARIMI" - ], - "sched": [ - { - "room": "F109", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 2 - ] - } - ] - } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" - } - }, - "CE F435": { - "name": "Introduction to Fem", - "sections": { - "L1": { - "instructors": [ - "ANMALA JAGADEESH" - ], - "sched": [ - { - "room": "F201", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 2 - ] - } - ] - } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" - } - }, - "CE G514": { - "name": "Structural Optimization", - "sections": { - "L1": { - "instructors": [ - "A VASAN" - ], - "sched": [ - { - "room": "F201", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 5 - ] - } - ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "CE G518": { - "name": "Pavement Analysis & Des", - "sections": { - "L1": { - "instructors": [ - "SRIDHAR RAJU" - ], - "sched": [ - { - "room": "F204", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - }, - "P1": { - "instructors": [ - "Sridhar Raju" - ], - "sched": [ - { - "room": "D224", - "days": [ - "M" - ], - "hours": [ - 2, - 3 - ] - } - ] - } - }, - "compre": { - "date": "02/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "3.30 - 5.00 PM" - } - }, - "CE G524": { - "name": "Urban Mass Tran Plan Op", - "sections": { - "L1": { - "instructors": [ - "PRASANTA KUMAR SAHU" - ], - "sched": [ - { - "room": "F204", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 5 - ] - } - ] - }, - "P1": { - "instructors": [ - "Prasanta Kumar Sahu" - ], - "sched": [ - { - "room": "D224", - "days": [ - "F" - ], - "hours": [ - 2, - 3 - ] - } - ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "CE G546": { - "name": "Highway Cons Practices", - "sections": { - "L1": { - "instructors": [ - "SRIDHAR RAJU", - "Prasanta Kumar Sahu" - ], - "sched": [ - { - "room": "F204", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 5 - ] - } - ] - }, - "P1": { - "instructors": [ - "Sridhar Raju", - "Prasanta Kumar Sahu" - ], - "sched": [ - { - "room": "LAB", - "days": [ - "Th" - ], - "hours": [ - 8, - 9 - ] - } - ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "CE G562": { - "name": "Advanced Concrete Technology", - "sections": { - "L1": { - "instructors": [ - "ARKAMITRA KAR" - ], - "sched": [ - { - "room": "F201", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 4 - ] - } - ] - }, - "P1": { - "instructors": [ - "Arkamitra Kar" - ], - "sched": [ - { - "room": "D119", - "days": [ - "W" - ], - "hours": [ - 8, - 9 - ] - } - ] - } - }, - "compre": { - "date": "09/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "11.00 -12.30 PM" - } - }, - "CE G613": { - "name": "Adv Concrete Structures", - "sections": { - "L1": { - "instructors": [ - "BAHURUDEEN A" - ], - "sched": [ - { - "room": "F201", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 3 - ] - } - ] - }, - "P1": { - "instructors": [ - "Bahurudeen A" - ], - "sched": [ - { - "room": "D124", - "days": [ - "T" - ], - "hours": [ - 8, - 9 - ] - } - ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "CE G615": { - "name": "Earthquake Engineering", - "sections": { - "L1": { - "instructors": [ - "MOHAN S C" - ], - "sched": [ - { - "room": "F201", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 3 - ] - } - ] - }, - "P1": { - "instructors": [ - "Mohan S C" - ], - "sched": [ - { - "room": "WS", - "days": [ - "M" - ], - "hours": [ - 7, - 8 - ] - } - ] - } - }, - "compre": { - "date": "02/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "3.30 - 5.00 PM" - } - }, - "CHE F241": { - "name": "Heat Transfer", - "sections": { - "L1": { - "instructors": [ - "VED PRAKASH MISHRA" - ], - "sched": [ - { - "room": "F205", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - }, - "T1": { - "instructors": [ - "Ved Prakash Mishra" - ], - "sched": [ - { - "room": "F205", - "days": [ - "T" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "12/05", - "session": "AN" - }, - "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" - } - }, - "CHE F242": { - "name": "Num Method For Chem Engg", - "sections": { - "L1": { - "instructors": [ - "VIKRANT KUMAR S" - ], - "sched": [ - { - "room": "F205", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 5 - ] - } - ] - }, - "T1": { - "instructors": [ - "Vikrant Kumar S" - ], - "sched": [ - { - "room": "D208 A", - "days": [ - "T" - ], - "hours": [ - 7 - ] - } - ] - } - }, - "compre": { - "date": "08/05", - "session": "FN" - }, - "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" - } - }, - "CHE F243": { - "name": "Material Science & Engineering", - "sections": { - "L1": { - "instructors": [ - "NANDINI BHANDARU" - ], - "sched": [ - { - "room": "F205", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 5 - ] - } - ] - }, - "T1": { - "instructors": [ - "Nandini Bhandaru" - ], - "sched": [ - { - "room": "F205", - "days": [ - "S" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "14/05", - "session": "FN" - }, - "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" - } - }, - "CHE F244": { - "name": "Separation Processes I", - "sections": { - "L1": { - "instructors": [ - "BALAJI KRISHNAMURTHY" - ], - "sched": [ - { - "room": "F205", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 4 - ] - } - ] - }, - "T1": { - "instructors": [ - "Balaji Krishnamurthy" - ], - "sched": [ - { - "room": "F205", - "days": [ - "Th" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "02/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "CHE F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "SRIKANTA DINDA" - ], - "sched": [] - } - } - }, - "CHE F341": { - "name": "Chemical Engg Lab II", - "sections": { - "L1": { - "instructors": [ - "I SREEDHAR", - "Nithin Bharadwaj", - "Yaddanapudi Varun" - ], - "sched": [ - { - "room": "D226", - "days": [ - "M", - "W" - ], - "hours": [ - 2, - 3, - 4 - ] - } - ] - }, - "L2": { - "instructors": [ - "Karthik Chetan", - "Suresh Kanuri", - "Vadlakonda Ravi Kiran Varm" - ], - "sched": [ - { - "room": "D226", - "days": [ - "M", - "W" - ], - "hours": [ - 2, - 3, - 4 - ] - } - ] - } - } - }, - "CHE F342": { - "name": "Process Dyn & Control", - "sections": { - "L1": { - "instructors": [ - "JAIDEEP CHATTERJEE" - ], - "sched": [ - { - "room": "F205", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 2 - ] - } - ] - }, - "T1": { - "instructors": [ - "Jaideep Chatterjee" - ], - "sched": [ - { - "room": "F205", - "days": [ - "M" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "CHE F343": { - "name": "Process Des Principle II", - "sections": { - "L1": { - "instructors": [ - "SATYAPAUL SINGH AMART" - ], - "sched": [ - { - "room": "F205", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 3 - ] - } - ] - }, - "T1": { - "instructors": [ - "Satyapaul Singh Amarthaluri" - ], - "sched": [ - { - "room": "D208 B", - "days": [ - "T" - ], - "hours": [ - 7 - ] - } - ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "CHE F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "NANDINI BHANDARU" - ], - "sched": [] - } - } - }, - "CHE F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "NANDINI BHANDARU" - ], - "sched": [] - } - } - }, - "CHE F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "VIKRANT KUMAR S" - ], - "sched": [] - } - } - }, - "CHE F377": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "VIKRANT KUMAR S" - ], - "sched": [] - } - } - }, - "CHE F418": { - "name": "Model & Simu in Che Engg", - "sections": { - "L1": { - "instructors": [ - "ANGAN SENGUPTA", - "Vikrant Kumar S" - ], - "sched": [ - { - "room": "D208 C", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 7 - ] - } - ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "CHE F419": { - "name": "Chemical Process Tech", - "sections": { - "L1": { - "instructors": [ - "RAMESH BABU A" - ], - "sched": [ - { - "room": "G207", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "CHE F498": { - "name": "Colloids and Interface Engineering", - "sections": { - "L1": { - "instructors": [ - "JAIDEEP CHATTERJEE", - "Nandini Bhandaru" - ], - "sched": [ - { - "room": "G207", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 5 - ] - } - ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "CHE G552": { - "name": "Adv Transport Phenomena", - "sections": { - "L1": { - "instructors": [ - "BALAJI KRISHNAMURTHY", - "P Saikiran" - ], - "sched": [ - { - "room": "G106", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 5 + 2 ] } ] } }, "compre": { - "date": "08/05", - "session": "AN" + "date": "17/05", + "session": "FN" }, "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" + "date": "15/03", + "time": "9.00am-10.30am" } }, - "CHE G617": { - "name": "Petroleum Refinery Engineering", + "BITS G513": { + "name": "Study in Advanced Topics", "sections": { "L1": { "instructors": [ - "SRIKANTA DINDA" - ], - "sched": [ - { - "room": "G106", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - }, - "P1": { - "instructors": [ - "Srikanta Dinda", - "Vuchuru Kalyan" + "V V KRISHNA VENUGANTI" ], - "sched": [ - { - "room": "D227A", - "days": [ - "T" - ], - "hours": [ - 7, - 8, - 9 - ] - } - ] + "sched": [] } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" } }, - "CHE G641": { - "name": "Reaction Engineering", + "BITS G529": { + "name": "Research Project I", "sections": { "L1": { "instructors": [ - "PANKAJ KUMAR" - ], - "sched": [ - { - "room": "F203", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 3 - ] - } - ] - }, - "P1": { - "instructors": [ - "Srikanta Dinda", - "P Pradeep Reddy" + "V V KRISHNA VENUGANTI" ], - "sched": [ - { - "room": "D226", - "days": [ - "Th" - ], - "hours": [ - 7, - 8, - 9 - ] - } - ] + "sched": [] } - }, - "compre": { - "date": "01/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" } }, - "CHEM F110": { - "name": "Chemistry Laboratory", + "BITS G539": { + "name": "Research Project II", "sections": { "L1": { "instructors": [ - "N RAJESH", - "Deepthi Priyanka Damera" - ], - "sched": [ - { - "room": "B124", - "days": [ - "S" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "L2": { - "instructors": [ - "Durba Roy", - "Banchhanidhi Prusti" - ], - "sched": [ - { - "room": "B124", - "days": [ - "M" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "L3": { - "instructors": [ - "KVG Chandrasekhar", - "Soumitra Payra" - ], - "sched": [ - { - "room": "B229", - "days": [ - "M" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "L4": { - "instructors": [ - "K Sumithra", - "Arunraj B" - ], - "sched": [ - { - "room": "B229", - "days": [ - "T" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "L5": { - "instructors": [ - "Amit Nag", - "B Hima Bindu" - ], - "sched": [ - { - "room": "B124", - "days": [ - "W" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "L6": { - "instructors": [ - "Chanchal Chakravarthy", - "Susmita Roy" - ], - "sched": [ - { - "room": "B124", - "days": [ - "F" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "L7": { - "instructors": [ - "R Krishnan", - "Aluri Ravallika" - ], - "sched": [ - { - "room": "B124", - "days": [ - "F" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "L8": { - "instructors": [ - "Himanshu Aggarwal", - "Sruthi Peesapati" + "V V KRISHNA VENUGANTI" ], - "sched": [ - { - "room": "B229", - "days": [ - "W" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "L9": { + "sched": [] + } + } + }, + "BITS G540": { + "name": "Research Practice", + "sections": { + "L1": { "instructors": [ - "Himanshu Aggarwal", - "Meenu P C" + "V V KRISHNA VENUGANTI" ], - "sched": [ - { - "room": "B229", - "days": [ - "Th" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "L10": { + "sched": [] + } + } + }, + "BITS G563T": { + "name": "Dissertation", + "sections": { + "L1": { "instructors": [ - "J Subbalakshmi", - "Sahithi Reddy Andru" + "V V KRISHNA VENUGANTI" ], - "sched": [ - { - "room": "B124", - "days": [ - "Th" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "L11": { + "sched": [] + } + } + }, + "BITS G639": { + "name": "Practice School", + "sections": { + "L1": { "instructors": [ - "J Subbalakshmi", - "Nilanjana Mukherjee" + "S P REGALLA (PS DEAN)" ], - "sched": [ - { - "room": "B124", - "days": [ - "T" - ], - "hours": [ - 4, - 5 - ] - } - ] + "sched": [] } } }, - "CHEM F111": { - "name": "General Chemistry", + "BITS G649": { + "name": "Reading Course", "sections": { "L1": { "instructors": [ - "BALAJI GOPALAN", - "KVG Chandrasekhar" + "V V KRISHNA VENUGANTI" ], - "sched": [ - { - "room": "F105", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 3 - ] - } - ] - }, - "L2": { + "sched": [] + } + } + }, + "BITS G661": { + "name": "Research Methodology I", + "sections": { + "L1": { "instructors": [ - "Tanmay Chatterjee", - "Amit Nag" + "SATYAPAUL SINGH AMART", + "Debirupa Mitra" ], "sched": [ { - "room": "F103", + "room": "F204", "days": [ "T", "Th", "S" ], "hours": [ - 2 + 4 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "14/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "3.30pm-5.00pm" + } + }, + "CE F241": { + "name": "Analysis of Structures", + "sections": { + "L1": { "instructors": [ - "Tanmay Chatterjee" + "SHIVANG SHEKHAR" ], "sched": [ { - "room": "G101", + "room": "F109", "days": [ "M", - "W" + "W", + "F" ], "hours": [ - 1 + 2 ] } ] }, - "T2": { + "T1": { "instructors": [ - "Amit Nag" + "Chirdeep N R" ], "sched": [ { - "room": "G105", + "room": "F109", "days": [ - "M", - "W" + "T" ], "hours": [ 1 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "19/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "9.00am-10.30am" + } + }, + "CE F242": { + "name": "Construction Planning & Tech", + "sections": { + "L1": { "instructors": [ - "Manab Chakravarty" + "CHANDU PARIMI", + "A Vasan" ], "sched": [ { - "room": "G103", + "room": "F109", "days": [ "M", - "W" + "W", + "F" ], "hours": [ - 1 + 3 ] } ] }, - "T4": { + "T1": { "instructors": [ - "Sounak Roy" + "Krishnendu Sivadas", + "Sheik Mohammed Zoheb Navaz" ], "sched": [ { - "room": "G104", + "room": "F109", "days": [ - "M", - "W" + "Th" ], "hours": [ 1 ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "06/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "9.00am-10.30am" + } + }, + "CE F243": { + "name": "Soil Mechanics", + "sections": { + "L1": { "instructors": [ - "Balaji Gopalan" + "ANASUA GUHARAY" ], "sched": [ { - "room": "G105", + "room": "F109", "days": [ "T", - "Th" + "Th", + "S" ], "hours": [ - 8 + 3 ] } ] }, - "T6": { + "P1": { "instructors": [ - "KVG Chandrasekhar" + "G Sachin Chakravart" ], "sched": [ { - "room": "G106", + "room": "D125", "days": [ - "T", - "Th" + "F" ], "hours": [ + 7, 8 ] } ] }, - "T7": { - "instructors": [ - "Chanchal Chakravarthy" - ], - "sched": [ - { - "room": "G107", - "days": [ - "M", - "W" - ], - "hours": [ - 1 - ] - } - ] - }, - "T8": { + "P2": { "instructors": [ - "Subit Kumar Saha" + "Ankur Abhishek" ], "sched": [ { - "room": "G201", + "room": "D125", "days": [ - "M", - "W" + "T" ], "hours": [ - 1 + 7, + 8 ] } ] }, - "T9": { + "T1": { "instructors": [ - "Himanshu Aggarwal" + "Anasua Guharay" ], "sched": [ { - "room": "G108", + "room": "F109", "days": [ - "M", - "W" + "T" ], "hours": [ - 1 + 9 ] } ] @@ -4937,183 +1722,165 @@ "session": "AN" }, "midsem": { - "date": "5/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "CHEM F223": { - "name": "Colloid & Surface Chem", + "CE F244": { + "name": "Highway Engineering", "sections": { "L1": { "instructors": [ - "RAMAKRISHNAN G" + "BANDHAN BANDHU MAJU" ], "sched": [ { - "room": "G205", + "room": "F109", "days": [ "T", "Th", "S" ], "hours": [ - 5 + 2 ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "CHEM F241": { - "name": "Inorganic Chemistry II", - "sections": { - "L1": { + }, + "P1": { "instructors": [ - "SOUNAK ROY" + "Sridhar Raju" ], "sched": [ { - "room": "G204", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ + 4, 5 ] } ] }, + "P2": { + "instructors": [ + "Vuthipalli Harshitha" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "M" + ], + "hours": [ + 7, + 8 + ] + } + ] + }, "T1": { "instructors": [ - "Sounak Roy" + "Bandhan Bandhu Majumdar" ], "sched": [ { - "room": "G204", + "room": "F109", "days": [ - "T" + "Th" ], "hours": [ - 1 + 9 ] } ] } }, "compre": { - "date": "08/05", - "session": "FN" + "date": "17/05", + "session": "AN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "15/03", + "time": "11.00am-12.30pm" } }, - "CHEM F242": { - "name": "Chemical Exper I", + "CE F266": { + "name": "Study Project", "sections": { "L1": { "instructors": [ - "TANMAY CHATTERJEE", - "Anupam Bhattacharya", - "Khetmalis Yogesh Mahadu", - "Madhuparna Chakraborty", - "Nandikolla Adinarayana", - "Sameer Singh", - "Sd Anwarhussaini", - "Shouvik Bhuin", - "T Leelasree" + "ANMALA JAGADEESH" ], - "sched": [ - { - "room": "B124", - "days": [ - "T", - "Th" - ], - "hours": [ - 7, - 8, - 9 - ] - } - ] + "sched": [] } } }, - "CHEM F243": { - "name": "Organic Chemistry II", + "CE F320": { + "name": "Design of Reinforced Concrete", "sections": { "L1": { "instructors": [ - "ANUPAM BHATTACHARYA", - "Manab Chakravarty" + "ARKAMITRA KAR", + "Raghu Piska" ], "sched": [ { - "room": "G204", + "room": "F203", "days": [ "T", "Th", "S" ], "hours": [ - 4 + 2 ] } ] }, "T1": { "instructors": [ - "Manab Chakravarty", - "Anupam Bhattacharya" + "Arkamitra Kar", + "Raghu Piska" ], "sched": [ { - "room": "G202", + "room": "F203", "days": [ - "M" + "T" ], "hours": [ - 3 + 6 ] } ] } }, "compre": { - "date": "12/05", + "date": "17/05", "session": "AN" }, "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" + "date": "15/03", + "time": "11.00am-12.30pm" } }, - "CHEM F244": { - "name": "Physical Chemistry III", + "CE F321": { + "name": "Engineering Hydrology", "sections": { "L1": { "instructors": [ - "K SUMITHRA" + "K SRINIVASA RAJU" ], "sched": [ { - "room": "G204", + "room": "F109", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 4 @@ -5123,183 +1890,143 @@ }, "T1": { "instructors": [ - "K Sumithra" + "K Srinivasa Raju", + "Vogeti Rishith Kumar" ], "sched": [ { - "room": "G204", + "room": "F109", "days": [ - "S" + "M" ], "hours": [ 1 ] } ] - } - }, - "compre": { - "date": "02/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "CHEM F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "AMIT NAG" - ], - "sched": [] - } - } - }, - "CHEM F327": { - "name": "Electrochem Funda & Appl", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "DURBA ROY" + "K Srinivasa Raju", + "Vogeti Rishith Kumar" ], "sched": [ { - "room": "G204", + "room": "F109", "days": [ - "M", - "W", - "F" + "W" ], "hours": [ - 8 + 1 ] } ] } }, "compre": { - "date": "14/05", + "date": "18/05", "session": "AN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "15/03", + "time": "3.30pm-5.00pm" } }, - "CHEM F329": { - "name": "Analytical Chemistry", + "CE F342": { + "name": "Water & Wastewater Treat", "sections": { "L1": { "instructors": [ - "N RAJESH" + "MURARI R R VARMA" ], "sched": [ { - "room": "G204", + "room": "F201", "days": [ "M", "W", "F" ], "hours": [ - 7 + 8 ] } ] }, "P1": { "instructors": [ - "N Rajesh" + "M Naveen Naidu" ], "sched": [ { - "room": "G204", + "room": "D108", "days": [ "M" ], "hours": [ - 10, - 11 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "CHEM F341": { - "name": "Chemical Exper II", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "SUBIT KUMAR SAHA", - "B Aniket Diliprao", - "Balaji Gopalan", - "Dinabandhu Patra", - "Kaja Sravani", - "Ramakrishnan G", - "Reeshma Rameshan", - "Rishika Aggrawal", - "Rituparna Hazra", - "Sayantan Halder" + "Jittin Varghese" ], "sched": [ { - "room": "B124", + "room": "D108", "days": [ - "M", - "W" + "Th" ], "hours": [ 7, - 8, - 9 + 8 ] } ] - } - } - }, - "CHEM F342": { - "name": "Organic Chemistry IV", - "sections": { - "L1": { + }, + "P3": { "instructors": [ - "MANAB CHAKRAVARTY", - "Anupam Bhattacharya" + "Nagalapalli Satish" ], "sched": [ { - "room": "G207", + "room": "D108", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 2 + 7, + 8 ] } ] }, "T1": { "instructors": [ - "Manab Chakravarty", - "Anupam Bhattacharya" + "Murari R R Varma" ], "sched": [ { - "room": "G207", + "room": "G101", + "days": [ + "M" + ], + "hours": [ + 1 + ] + } + ] + }, + "T2": { + "instructors": [ + "Murari R R Varma" + ], + "sched": [ + { + "room": "F109", "days": [ "F" ], @@ -5311,44 +2038,60 @@ } }, "compre": { - "date": "04/05", + "date": "12/05", "session": "AN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "12/03", + "time": "3.30pm-5.00pm" } }, - "CHEM F343": { - "name": "Inorganic Chemistry III", + "CE F343": { + "name": "Design of Steel Structures", "sections": { "L1": { "instructors": [ - "R KRISHNAN" + "PN RAO" ], "sched": [ { - "room": "G207", + "room": "F109", "days": [ "T", "Th", "S" ], "hours": [ - 3 + 5 ] } ] }, "T1": { "instructors": [ - "R Krishnan" + "PN Rao" ], "sched": [ { - "room": "G207", + "room": "F201", "days": [ - "M" + "W" + ], + "hours": [ + 1 + ] + } + ] + }, + "T2": { + "instructors": [ + "PN Rao" + ], + "sched": [ + { + "room": "F201", + "days": [ + "F" ], "hours": [ 1 @@ -5358,74 +2101,122 @@ } }, "compre": { - "date": "06/05", - "session": "AN" + "date": "23/05", + "session": "FN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "16/03", + "time": "3.30pm-5.00pm" } }, - "CHEM F366": { + "CE F366": { "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "DURBA ROY" + "CHANDU PARIMI" ], "sched": [] } } }, - "CHEM F367": { + "CE F367": { "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "DURBA ROY" + "CHANDU PARIMI" ], "sched": [] } } }, - "CHEM F376": { + "CE F376": { "name": "Design Project", "sections": { "L1": { "instructors": [ - "CHANCHAL CHAKRAVART" + "A VASAN" ], "sched": [] } } }, - "CHEM F377": { + "CE F377": { "name": "Design Project", "sections": { "L1": { "instructors": [ - "CHANCHAL CHAKRAVART" + "A VASAN" ], "sched": [] } } }, - "CHEM F414": { - "name": "Bio & Chemical Sensors", + "CE F415": { + "name": "Des of Prest Conc Struct", + "sections": { + "L1": { + "instructors": [ + "BAHURUDEEN A" + ], + "sched": [ + { + "room": "F201", + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 7 + ] + } + ] + } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" + } + }, + "CE F416": { + "name": "Comp Appl in Civil Engg", "sections": { "L1": { "instructors": [ - "J SUBBALAKSHMI" + "ARKAMITRA KAR" + ], + "sched": [ + { + "room": "F201", + "days": [ + "M", + "W" + ], + "hours": [ + 2 + ] + } + ] + }, + "P1": { + "instructors": [ + "Arkamitra Kar" ], "sched": [ { - "room": "G204", + "room": "LAB", "days": [ - "M", - "W", - "F" + "T", + "Th" ], "hours": [ + 8, 9 ] } @@ -5437,52 +2228,51 @@ "session": "FN" }, "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" + "date": "12/03", + "time": "9.00am-10.30am" } }, - "CHEM G521": { - "name": "Environmental Chemistry", + "CE F425": { + "name": "Airport Rail & Waterways", "sections": { "L1": { "instructors": [ - "N RAJESH" + "V VINAYAKA RAM" ], "sched": [ { - "room": "G203", + "room": "F201", "days": [ "M", "W", "F" ], "hours": [ - 2 + 3 ] } ] } }, "compre": { - "date": "09/05", + "date": "06/05", "session": "AN" }, "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" + "date": "10/03", + "time": "11.00am-12.30pm" } }, - "CHEM G552": { - "name": "Advanced Inorganic Chemistry", + "CE F426": { + "name": "Geosyn & Rein Soil Str", "sections": { "L1": { "instructors": [ - "R KRISHNAN", - "Himanshu Aggarwal" + "ANASUA GUHARAY" ], "sched": [ { - "room": "F205", + "room": "F202", "days": [ "M", "W", @@ -5496,471 +2286,521 @@ } }, "compre": { - "date": "01/05", + "date": "06/05", "session": "AN" }, "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" + "date": "10/03", + "time": "11.00am-12.30pm" } }, - "CHEM G553": { - "name": "Advanced Physical Chemistry", + "CE F432": { + "name": "Structural Dynamics", "sections": { "L1": { "instructors": [ - "K SUMITHRA", - "Subit Kumar Saha" + "CHANDU PARIMI" ], "sched": [ { - "room": "G107", + "room": "F201", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 3 + 9 ] } ] } }, "compre": { - "date": "06/05", + "date": "09/05", "session": "AN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "11/03", + "time": "11.00am-12.30pm" } }, - "CHEM G561": { - "name": "Heterocyclic Chemistry", + "CE F435": { + "name": "Introduction to Fem", "sections": { "L1": { "instructors": [ - "KVG CHANDRASEKHAR", - "Tanmay Chatterjee" + "PN RAO" ], "sched": [ { - "room": "G203", + "room": "F201", "days": [ "T", "Th", "S" ], "hours": [ - 5 + 3 ] } ] } }, "compre": { - "date": "08/05", - "session": "FN" + "date": "19/05", + "session": "AN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "16/03", + "time": "11.00am-12.30pm" } }, - "CS F111": { - "name": "Computer Programming", + "CE G514": { + "name": "Structural Optimization", "sections": { "L1": { "instructors": [ - "CHITTARANJAN HOTA" + "A VASAN" ], "sched": [ { - "room": "F105", + "room": "F202", "days": [ "T", "Th", "S" ], "hours": [ - 2 + 3 ] } ] - }, - "L2": { + } + }, + "compre": { + "date": "12/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "1.30pm-3.00pm" + } + }, + "CE G518": { + "name": "Pavement Analysis & Des", + "sections": { + "L1": { "instructors": [ - "Odelu Vanga" + "V VINAYAKA RAM" ], "sched": [ { - "room": "F103", + "room": "F202", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 9 + 4 ] } ] }, "P1": { "instructors": [ - "Odelu Vanga", - "K Sai Anirudh" - ], - "sched": [ - { - "room": "D311", - "days": [ - "M" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "P2": { - "instructors": [ - "Rakesh Pandey", - "Rashmi Sahay" - ], - "sched": [ - { - "room": "D311", - "days": [ - "T" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "P3": { - "instructors": [ - "Ramaswamy Venkatakrishna" + "V Vinayaka Ram", + "Md Ikramullah Khan" ], "sched": [ { - "room": "D311", + "room": "LAB", "days": [ "M" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] - }, - "P4": { + } + }, + "compre": { + "date": "07/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "1.30pm-3.00pm" + } + }, + "CE G566": { + "name": "Public Transportation", + "sections": { + "L1": { "instructors": [ - "Paresh Saxena", - "Rashmi Sahay" + "PRASANTA KUMAR SAHU" ], "sched": [ { - "room": "D311", + "room": "F202", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 4, 5 ] } ] }, - "P5": { + "P1": { "instructors": [ - "D V N Siva Kumar", - "Rajesh Kumar Shrivastava" + "Prasanta Kumar Sahu" ], "sched": [ { - "room": "D311", + "room": "LAB", "days": [ "W" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] - }, - "P6": { + } + }, + "compre": { + "date": "10/05", + "session": "FN" + }, + "midsem": { + "date": "11/03", + "time": "1.30pm-3.00pm" + } + }, + "CE G570": { + "name": "Highway Construction Technolog", + "sections": { + "L1": { "instructors": [ - "D V N Siva Kumar", - "Sanket Mishra" + "SRIDHAR RAJU" ], "sched": [ { - "room": "D311", + "room": "F202", "days": [ + "M", + "W", "F" ], "hours": [ - 7, - 8 + 4 ] } ] }, - "P7": { + "P1": { "instructors": [ - "Paresh Saxena", - "Mohita Ghildiyal" + "Sridhar Raju" ], "sched": [ { - "room": "D311", + "room": "LAB", "days": [ - "F" + "Th" ], "hours": [ - 4, - 5 + 8, + 9 ] } ] - }, - "P8": { + } + }, + "compre": { + "date": "12/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "1.30pm-3.00pm" + } + }, + "CE G575": { + "name": "Freight Transportation", + "sections": { + "L1": { "instructors": [ - "Rakesh Pandey", - "K Sai Anirudh" + "PRASANTA KUMAR SAHU", + "Bandhan Majumdar" ], "sched": [ { - "room": "D311", + "room": "F202", "days": [ - "W" + "M", + "W", + "F" ], "hours": [ - 4, - 5 + 2 ] } ] }, - "P9": { + "P1": { "instructors": [ - "Ramaswamy Venkatakrishna" + "Prasanta Kumar Sahu" ], "sched": [ { - "room": "D311", + "room": "LAB", "days": [ - "S" + "F" ], "hours": [ - 4, - 5 + 8, + 9 ] } ] } }, "compre": { - "date": "04/05", + "date": "14/05", "session": "FN" }, "midsem": { - "date": "3/3", - "time": "9.00 - 10.30AM" + "date": "14/03", + "time": "3.30pm-5.00pm" } }, - "CS F211": { - "name": "Data Structures & Algo", + "CE G613": { + "name": "Adv Concrete Structures", "sections": { "L1": { "instructors": [ - "NL BHANUMURTHY" + "BAHURUDEEN A" ], "sched": [ { - "room": "F102", + "room": "F201", "days": [ "T", "Th", "S" ], "hours": [ - 5 + 4 ] } ] }, "P1": { "instructors": [ - "Barsha Mitra", - "Rajita BSAS" + "Bahurudeen A" ], "sched": [ { - "room": "D313", + "room": "LAB", "days": [ - "M" + "T" ], "hours": [ - 4, - 5 + 6, + 7 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "CE G615": { + "name": "Earthquake Engineering", + "sections": { + "L1": { "instructors": [ - "Odelu Vanga", - "Priyanka Rushikesh Chaudh" + "MOHAN S C" ], "sched": [ { - "room": "D313", + "room": "F201", "days": [ + "M", + "W", "F" ], "hours": [ - 2, - 3 + 4 ] } ] }, - "P3": { + "P1": { "instructors": [ - "Manajanna B", - "T Sahithi" + "Mohan S C", + "Ch Bala Venkata Hareen" ], "sched": [ { - "room": "D313", + "room": "LAB", "days": [ - "M" + "T" ], "hours": [ - 2, - 3 + 8, + 9 ] } ] - }, - "P4": { + } + }, + "compre": { + "date": "10/05", + "session": "FN" + }, + "midsem": { + "date": "11/03", + "time": "1.30pm-3.00pm" + } + }, + "CE G616": { + "name": "Bridge Engineering", + "sections": { + "L1": { "instructors": [ - "Manajanna B", - "Barsha Mitra" + "SHIVANG SHEKHAR" ], "sched": [ { - "room": "D313", + "room": "F207", "days": [ - "W" + "T", + "Th", + "S" ], "hours": [ - 2, - 3 + 2 ] } ] }, - "P5": { + "P1": { "instructors": [ - "Barsha Mitra", - "Rajita BSAS" + "Shivang Shekhar" ], "sched": [ { - "room": "D313", + "room": "LAB", "days": [ - "F" + "Th" ], "hours": [ - 4, - 5 + 8, + 9 ] } ] - }, - "P6": { + } + }, + "compre": { + "date": "20/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "1.30pm-3.00pm" + } + }, + "CHE F241": { + "name": "Heat Transfer", + "sections": { + "L1": { "instructors": [ - "Ramaswamy Venkatakrishna", - "Priyanka Rushikesh Chaudh" + "AFKHAM MIR" ], "sched": [ { - "room": "D313", + "room": "F205", "days": [ - "F" + "T", + "Th", + "S" ], "hours": [ - 7, - 8 + 3 ] } ] }, "T1": { "instructors": [ - "Barsha Mitra" - ], - "sched": [ - { - "room": "G106", - "days": [ - "T" - ], - "hours": [ - 1 - ] - } - ] - }, - "T2": { - "instructors": [ - "Odelu Vanga" + "Afkham Mir" ], "sched": [ { - "room": "G107", + "room": "F205", "days": [ - "T" + "Th" ], "hours": [ - 1 + 9 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "19/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "9.00am-10.30am" + } + }, + "CHE F242": { + "name": "Num Method For Chem Engg", + "sections": { + "L1": { "instructors": [ - "Manajanna B" + "ARNAB DUTTA" ], "sched": [ { - "room": "G106", + "room": "F205", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 1 + 2 ] } ] }, - "T4": { + "T1": { "instructors": [ - "Ramaswamy Venkatakrishna" + "Arnab Dutta" ], "sched": [ { - "room": "G107", + "room": "D208", "days": [ "Th" ], @@ -5972,149 +2812,194 @@ } }, "compre": { - "date": "08/05", - "session": "FN" + "date": "11/05", + "session": "AN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "CS F212": { - "name": "Data Base Systems", + "CHE F243": { + "name": "Material Science & Engineering", "sections": { "L1": { "instructors": [ - "R GURURAJ" + "D PURNIMA" ], "sched": [ { - "room": "F102", + "room": "F205", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 5 + 2 ] } ] }, - "P1": { + "T1": { "instructors": [ - "Lov Kumar", - "Deepa Kumari" + "D Purnima" ], "sched": [ { - "room": "D311", + "room": "F205", "days": [ - "M" + "T" ], "hours": [ - 2, - 3 + 9 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "17/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "11.00am-12.30pm" + } + }, + "CHE F244": { + "name": "Separation Processes I", + "sections": { + "L1": { "instructors": [ - "Lov Kumar" + "SATYAPAUL SINGH AMART" ], "sched": [ { - "room": "D311", + "room": "F205", "days": [ - "W" + "M", + "W", + "F" ], "hours": [ - 2, 3 ] } ] }, - "P3": { + "T1": { "instructors": [ - "R Gururaj", - "Deepa Kumari" + "Satyapaul Singh Amarthaluri" ], "sched": [ { - "room": "D311", + "room": "F205", "days": [ "T" ], "hours": [ - 7, - 8 + 1 ] } ] - }, - "P4": { + } + }, + "compre": { + "date": "06/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "9.00am-10.30am" + } + }, + "CHE F266": { + "name": "Study Project", + "sections": { + "L1": { "instructors": [ - "R Gururaj", - "Ramisetty Kavya" + "IYMAN ABRAR" + ], + "sched": [] + } + } + }, + "CHE F341": { + "name": "Chemical Engg Lab II", + "sections": { + "L1": { + "instructors": [ + "IYMAN ABRAR", + "Vuchuru Kalyan" ], "sched": [ { - "room": "D311", + "room": "LAB", "days": [ - "F" + "M", + "W" ], "hours": [ - 2, - 3 + 7, + 8, + 9 ] } ] }, - "P5": { + "L2": { "instructors": [ - "Jabez J Christopher", - "Ramisetty Kavya" + "Pankaj Kumar", + "P Saikiran" ], "sched": [ { - "room": "D311", + "room": "LAB", "days": [ - "Th" + "M", + "W" ], "hours": [ 7, - 8 + 8, + 9 ] } ] - }, - "T1": { + } + } + }, + "CHE F342": { + "name": "Process Dyn & Control", + "sections": { + "L1": { "instructors": [ - "Lov Kumar" + "JAIDEEP CHATTERJEE" ], "sched": [ { - "room": "G105", + "room": "F205", "days": [ + "T", + "Th", "S" ], "hours": [ - 1 + 4 ] } ] }, - "T2": { + "T1": { "instructors": [ - "R Gururaj" + "P Pradeep Reddy" ], "sched": [ { - "room": "G106", + "room": "F205", "days": [ - "S" + "M" ], "hours": [ 1 @@ -6122,15 +3007,15 @@ } ] }, - "T3": { + "T2": { "instructors": [ - "Jabez J Christopher" + "Jaideep Chatterjee" ], "sched": [ { - "room": "G107", + "room": "G102", "days": [ - "S" + "M" ], "hours": [ 1 @@ -6140,621 +3025,934 @@ } }, "compre": { - "date": "14/05", - "session": "FN" + "date": "18/05", + "session": "AN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "3.30pm-5.00pm" } }, - "CS F213": { - "name": "Object Oriented Prog", + "CHE F343": { + "name": "Process Des Principle II", "sections": { "L1": { "instructors": [ - "SUBHRAKANTA PANDA" - ], - "sched": [ - { - "room": "F103", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 7 - ] - } - ] - }, - "P1": { - "instructors": [ - "Surender Singh S" + "PANKAJ KUMAR" ], "sched": [ { - "room": "D313", + "room": "F205", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 8, - 9 + 5 ] } ] }, - "P2": { + "T1": { "instructors": [ - "Surender Singh S" + "Yaddanapudi Varun" ], "sched": [ { - "room": "D313", + "room": "F202", "days": [ - "S" + "W" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P3": { + "T2": { "instructors": [ - "Surender Singh S" + "Pankaj Kumar" ], "sched": [ { - "room": "D331A", + "room": "F205", "days": [ - "M" + "W" ], "hours": [ - 4, - 5 + 1 ] } ] } }, "compre": { - "date": "13/05", + "date": "23/05", "session": "FN" }, "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" + "date": "16/03", + "time": "3.30pm-5.00pm" } }, - "CS F241": { - "name": "Microproc & Interfacing", + "CHE F366": { + "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "MB SRINIVAS" + "IYMAN ABRAR" ], - "sched": [ - { - "room": "F105", - "days": [ - "T", - "Th", - "S" - ], - "hours": [ - 4 - ] - } - ] - }, - "L2": { + "sched": [] + } + } + }, + "CHE F367": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "IYMAN ABRAR" + ], + "sched": [] + } + } + }, + "CHE F376": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "IYMAN ABRAR" + ], + "sched": [] + } + } + }, + "CHE F377": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "IYMAN ABRAR" + ], + "sched": [] + } + } + }, + "CHE F418": { + "name": "Model & Simu in Che Engg", + "sections": { + "L1": { "instructors": [ - "MB Srinivas" + "VIKRANT KUMAR S" ], "sched": [ { - "room": "F105", + "room": "F204", "days": [ "M", "W", "F" ], "hours": [ - 4 + 2 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" + } + }, + "CHE F419": { + "name": "Chemical Process Tech", + "sections": { + "L1": { "instructors": [ - "Suvadip Batabyal", - "Renuka.H" + "RAMESH BABU A" ], "sched": [ { - "room": "I012", + "room": "F204", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 2, 3 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "CHE F433": { + "name": "Corrosion Engineering", + "sections": { + "L1": { "instructors": [ - "Karumbaiah Chappanda Nan", - "Renuka.H" + "RAMENDRA KISHOR PAL" ], "sched": [ { - "room": "I012", + "room": "F204", "days": [ - "W" + "T", + "Th", + "S" ], "hours": [ - 2, - 3 + 2 ] } ] - }, - "P3": { + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "CHE F498": { + "name": "Colloids and Interface Engineering", + "sections": { + "L1": { "instructors": [ - "Karumbaiah Chappanda Nan", - "P Michael Preetam Raj" + "NANDINI BHANDARU" ], "sched": [ { - "room": "I012", + "room": "F204", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 7, - 8 + 3 ] } ] - }, - "P4": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "CHE G532": { + "name": "Alternate Ener Resources", + "sections": { + "L1": { "instructors": [ - "Soumya J", - "P Michael Preetam Raj" + "IYMAN ABRAR" ], "sched": [ { - "room": "I012", + "room": "F204", "days": [ - "W" + "M", + "W", + "F" ], "hours": [ - 7, - 8 + 5 ] } ] }, - "P5": { + "P1": { "instructors": [ - "S K Sahoo", - "Puneeth S B" + "Iyman Abrar" ], "sched": [ { - "room": "I013", + "room": "LAB", "days": [ - "W" + "Th" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] - }, - "P6": { + } + }, + "compre": { + "date": "07/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "1.30pm-3.00pm" + } + }, + "CHE G552": { + "name": "Adv Transport Phenomena", + "sections": { + "L1": { "instructors": [ - "S K Sahoo", - "Puneeth S B", - "Swapna Challagundla" + "VIKRANT KUMAR S" ], "sched": [ { - "room": "I013", + "room": "F201", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 7, - 8 + 5 ] } ] - }, - "P7": { + } + }, + "compre": { + "date": "10/05", + "session": "FN" + }, + "midsem": { + "date": "11/03", + "time": "1.30pm-3.00pm" + } + }, + "CHE G641": { + "name": "Reaction Engineering", + "sections": { + "L1": { "instructors": [ - "Runa Kumari", - "Prakash Palasram R", - "Swapna Challagundla" + "SRIKANTA DINDA" ], "sched": [ { - "room": "I013", + "room": "F204", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 7, - 8 + 4 ] } ] }, - "P8": { + "P1": { "instructors": [ - "Runa Kumari", - "Prakash Palasram R" + "Srikanta Dinda", + "Suresh Kanuri" ], "sched": [ { - "room": "I013", + "room": "LAB", "days": [ - "F" + "T" ], "hours": [ 7, - 8 + 8, + 9 ] } ] - }, - "P9": { + } + }, + "compre": { + "date": "12/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "1.30pm-3.00pm" + } + }, + "CHEM F223": { + "name": "Colloid & Surface Chem", + "sections": { + "L1": { "instructors": [ - "Ramakant", - "G Jayeshkumar Pintubhai" + "RAMAKRISHNAN G", + "Mariya Midhu Francis" ], "sched": [ { - "room": "I013", + "room": "G205", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 2, - 3 + 5 ] } ] - }, - "P10": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "CHEM F241": { + "name": "Inorganic Chemistry II", + "sections": { + "L1": { "instructors": [ - "Ramakant", - "G Jayeshkumar Pintubhai" + "SOUNAK ROY", + "Himanshu Aggarwal" ], "sched": [ { - "room": "I013", + "room": "G103", "days": [ - "W" + "M", + "W", + "F" ], "hours": [ - 2, 3 ] } ] }, - "P11": { + "T1": { "instructors": [ - "Ramakant", - "Naveen Bokka" + "Sounak Roy", + "Himanshu Aggarwal", + "Meenu P C" ], "sched": [ { - "room": "I013", + "room": "G103", "days": [ "F" ], "hours": [ - 2, - 3 + 8 ] } ] - }, - "P12": { + } + }, + "compre": { + "date": "11/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "9.00am-10.30am" + } + }, + "CHEM F242": { + "name": "Chemical Exper I", + "sections": { + "P": { "instructors": [ - "Sandeep Kumar", - "Naveen Bokka" + "ARIJIT MUKHERJEE", + "Anupam Bhattacharya", + "D Ramaiah", + "Sruthi Peesapati" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "T" + "T", + "Th" ], "hours": [ 7, - 8 + 8, + 9 ] } ] - }, - "P13": { + } + } + }, + "CHEM F243": { + "name": "Organic Chemistry II", + "sections": { + "L1": { "instructors": [ - "Prashant Wali", - "Priyanka B G" + "MANAB CHAKRAVARTY", + "Arijit Mukherjee", + "Shouvik Bhuin" ], "sched": [ { - "room": "I012", + "room": "G103", "days": [ - "F" + "T", + "Th", + "S" ], "hours": [ - 7, - 8 + 3 ] } ] }, - "P14": { + "T1": { "instructors": [ - "Ramakant", - "Priyanka B G" + "Manab Chakravarty", + "Arijit Mukherjee" ], "sched": [ { - "room": "I013", + "room": "G106", "days": [ - "Th" + "W" ], "hours": [ - 7, 8 ] } ] - }, - "P15": { + } + }, + "compre": { + "date": "19/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "9.00am-10.30am" + } + }, + "CHEM F244": { + "name": "Physical Chemistry III", + "sections": { + "L1": { "instructors": [ - "Suvadip Batabyal", - "Sarda Sharma", - "Venkatarao Selamneni" + "K SUMITHRA" ], "sched": [ { - "room": "I012", + "room": "G103", "days": [ + "M", + "W", "F" ], "hours": [ - 2, - 3 + 2 ] } ] }, - "P16": { + "T1": { "instructors": [ - "Soumya J", - "Sarda Sharma" + "K Sumithra", + "Sahithi Reddy Andru" ], "sched": [ { - "room": "I012", + "room": "G102", "days": [ - "Th" + "W" ], "hours": [ - 7, - 8 + 5 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "06/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "11.00am-12.30pm" + } + }, + "CHEM F266": { + "name": "Study Project", + "sections": { + "L1": { "instructors": [ - "Suvadip Batabyal" + "BALAJI GOPALAN" + ], + "sched": [] + } + } + }, + "CHEM F327": { + "name": "Electrochem Funda & Appl", + "sections": { + "L1": { + "instructors": [ + "DURBA ROY", + "Jayapriya V" ], "sched": [ { - "room": "I111", + "room": "G104", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 10 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "07/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "3.30pm-5.00pm" + } + }, + "CHEM F329": { + "name": "Analytical Chemistry", + "sections": { + "L1": { "instructors": [ - "MB Srinivas" + "N RAJESH" ], "sched": [ { - "room": "I111", + "room": "G103", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 1 + 10 ] } ] }, - "T3": { + "P1": { "instructors": [ - "Amit Ranjan Azad" + "N Rajesh", + "Arunraj B" ], "sched": [ { - "room": "I112", + "room": "LAB", "days": [ "T" ], "hours": [ - 1 + 10, + 11 ] } ] - }, - "T4": { + } + }, + "compre": { + "date": "07/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "3.30pm-5.00pm" + } + }, + "CHEM F341": { + "name": "Chemical Exper II", + "sections": { + "L1": { "instructors": [ - "Amit Ranjan Azad" + "BALAJI GOPALAN", + "Chanchal Chakravarthy", + "Dinabandhu Patra", + "Mollah Rohan Ahsan", + "Reeshma Rameshan", + "Sounak Roy" ], "sched": [ { - "room": "I112", + "room": "LAB", "days": [ - "Th" + "M", + "W" ], "hours": [ - 1 + 7, + 8, + 9 ] } ] - }, - "T5": { + } + } + }, + "CHEM F342": { + "name": "Organic Chemistry IV", + "sections": { + "L1": { "instructors": [ - "Prashant Wali" + "ANUPAM BHATTACHARYA" ], "sched": [ { - "room": "I113", + "room": "G103", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 4 ] } ] }, - "T6": { + "T1": { "instructors": [ - "Prashant Wali" + "Anamika Bandyopadhyay" ], "sched": [ { - "room": "I113", + "room": "G103", "days": [ - "Th" + "T" ], "hours": [ - 1 + 6 ] } ] - }, - "T7": { + } + }, + "compre": { + "date": "21/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "9.00am-10.30am" + } + }, + "CHEM F343": { + "name": "Inorganic Chemistry III", + "sections": { + "L1": { "instructors": [ - "TO BE ANNOUNCED" + "R KRISHNAN" ], "sched": [ { - "room": "I114", + "room": "G103", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 5 ] } ] }, - "T8": { + "T1": { "instructors": [ - "TO BE ANNOUNCED" + "R Krishnan", + "Soumitra Payra" ], "sched": [ { - "room": "I114", + "room": "G103", "days": [ "Th" ], "hours": [ - 1 + 7 ] } ] - }, - "T9": { + } + }, + "compre": { + "date": "14/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "3.30pm-5.00pm" + } + }, + "CHEM F366": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "J SUBBALAKSHMI", + "Anuradha Sureshrao Mohitka" + ], + "sched": [] + } + } + }, + "CHEM F367": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "J SUBBALAKSHMI", + "B Hima Bindu" + ], + "sched": [] + } + } + }, + "CHEM F376": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "K SUMITHRA", + "Sayantan Halder" + ], + "sched": [] + } + } + }, + "CHEM F377": { + "name": "Design Project", + "sections": { + "L1": { "instructors": [ - "Sanjay Vidhyadharan" + "K SUMITHRA" + ], + "sched": [] + } + } + }, + "CHEM F412": { + "name": "Photochem & Laser Spectr", + "sections": { + "L1": { + "instructors": [ + "AMIT NAG", + "Subit Kumar Saha" ], "sched": [ { - "room": "I222", + "room": "G104", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 2 ] } ] - }, - "T10": { + } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" + } + }, + "CHEM F414": { + "name": "Bio & Chemical Sensors", + "sections": { + "L1": { "instructors": [ - "Suvadip Batabyal" + "J SUBBALAKSHMI", + "Nilanjan Dey", + "Sayantan Halder" ], "sched": [ { - "room": "I222", + "room": "G207", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 1 + 3 ] } ] } }, "compre": { - "date": "02/05", - "session": "FN" + "date": "19/05", + "session": "AN" }, "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" + "date": "16/03", + "time": "11.00am-12.30pm" } }, - "CS F266": { - "name": "Study Project", + "CHEM F491": { + "name": "Special Project", "sections": { "L1": { "instructors": [ - "SURENDER SINGH S" + "CHANCHAL CHAKRAVART" ], "sched": [] } } }, - "CS F303": { - "name": "Computer Networks", + "CS F211": { + "name": "Data Structures & Algo", "sections": { "L1": { "instructors": [ - "DIPANJAN CHAKRABORTY" + "CHITTARANJAN HOTA" ], "sched": [ { "room": "F102", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 2 @@ -6764,32 +3962,32 @@ }, "P1": { "instructors": [ - "D V N Siva Kumar", - "Pattiwar Shravan Kumar" + "Sameera Muhamed Salam", + "T Sahithi" ], "sched": [ { - "room": "D313", + "room": "LAB", "days": [ - "T" + "M" ], "hours": [ - 2, - 3 + 7, + 8 ] } ] }, "P2": { "instructors": [ - "Manik Gupta", - "Mandan Naresh" + "Barsha Mitra", + "K Sai Anirudh" ], "sched": [ { - "room": "D312", + "room": "LAB", "days": [ - "F" + "S" ], "hours": [ 4, @@ -6800,198 +3998,162 @@ }, "P3": { "instructors": [ - "Suvadip Batabyal", - "Pattiwar Shravan Kumar" + "Barsha Mitra", + "Subhashree Barada" ], "sched": [ { - "room": "D312", + "room": "LAB", "days": [ - "T" + "Th" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] }, "P4": { "instructors": [ - "Suvadip Batabyal", - "Mandan Naresh" + "Manjanna B", + "S Rasagna Vakkalanka" ], "sched": [ { - "room": "D313", + "room": "LAB", "days": [ - "Th" + "W" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] }, "P5": { "instructors": [ - "Manik Gupta", - "K V V S Pravallika" + "Ramaswamy Venkatakrishna", + "T Sahithi" ], "sched": [ { - "room": "D313", + "room": "LAB", "days": [ - "W" + "F" ], "hours": [ - 4, - 5 + 7, + 8 ] } ] }, "T1": { "instructors": [ - "D V N Siva Kumar" + "Sameera Muhamed Salam" ], "sched": [ { - "room": "F106", + "room": "I111", "days": [ - "M" + "T" ], "hours": [ - 1 + 9 ] } ] }, "T2": { "instructors": [ - "Manik Gupta" + "NL Bhanumurthy" ], "sched": [ { - "room": "F208", - "days": [ - "F" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" - } - }, - "CS F342": { - "name": "Computer Architecture", - "sections": { - "L1": { - "instructors": [ - "CHETAN KUMAR V" - ], - "sched": [ - { - "room": "F101", + "room": "I112", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 4 + 9 ] } ] }, - "P1": { + "T3": { "instructors": [ - "Chetan Kumar V", - "Sharvani Gadgil" + "Ramaswamy Venkatakrishna" ], "sched": [ { - "room": "I013", + "room": "I113", "days": [ - "M" + "T" ], "hours": [ - 4, - 5 + 9 ] } ] }, - "P2": { + "T4": { "instructors": [ - "Chetan Kumar V", - "Sharvani Gadgil" + "Manjanna B" ], "sched": [ { - "room": "I013", + "room": "I112", "days": [ - "W" + "Th" ], "hours": [ - 4, - 5 + 9 ] } ] }, - "P3": { + "T5": { "instructors": [ - "Chetan Kumar V", - "TO BE ANNOUNCED" + "NL Bhanumurthy" ], "sched": [ { - "room": "I013", + "room": "I111", "days": [ - "F" + "Th" ], "hours": [ - 4, - 5 + 9 ] } ] } }, "compre": { - "date": "12/05", - "session": "FN" + "date": "17/05", + "session": "AN" }, "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "11.00am-12.30pm" } }, - "CS F363": { - "name": "Compiler Construction", + "CS F212": { + "name": "Data Base Systems", "sections": { "L1": { "instructors": [ - "ARUNA MALAPATI" + "LOV KUMAR" ], "sched": [ { "room": "F102", "days": [ - "M", - "W" + "T", + "Th", + "S" ], "hours": [ 3 @@ -7001,31 +4163,32 @@ }, "P1": { "instructors": [ - "Aruna Malapati" + "Manik Gupta", + "K Simran" ], "sched": [ { - "room": "D331A", + "room": "LAB", "days": [ - "T" + "W" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] }, "P2": { "instructors": [ - "TO BE ANNOUNCED", - "Sanghamitra Samanta" + "Manik Gupta", + "S Rasagna Vakkalanka" ], "sched": [ { - "room": "D312", + "room": "LAB", "days": [ - "M" + "Th" ], "hours": [ 4, @@ -7036,527 +4199,370 @@ }, "P3": { "instructors": [ - "R Gururaj", - "Gourish Goudar" + "D V N Siva Kumar", + "P. Priyanka Chowdary" ], "sched": [ { - "room": "D312", + "room": "LAB", "days": [ - "Th" + "M" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] }, "P4": { "instructors": [ - "TO BE ANNOUNCED", - "Sanghamitra Samanta" + "T Sahithi", + "Chaitra C R" ], "sched": [ { - "room": "D312", + "room": "LAB", "days": [ - "W" + "T" ], "hours": [ - 4, - 5 + 7, + 8 ] } ] }, "P5": { "instructors": [ - "TO BE ANNOUNCED", - "Gourish Goudar" + "K Simran", + "P. Priyanka Chowdary" ], "sched": [ { - "room": "D313", + "room": "LAB", "days": [ - "Th" + "F" ], "hours": [ - 2, - 3 + 7, + 8 ] } ] }, "T1": { "instructors": [ - "Aruna Malapati" + "Lov Kumar" ], "sched": [ { - "room": "F104", + "room": "I113", "days": [ - "M" + "Th" ], "hours": [ - 1 + 9 ] } ] }, "T2": { "instructors": [ - "Aruna Malapati" - ], - "sched": [ - { - "room": "F104", - "days": [ - "W" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "01/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" - } - }, - "CS F364": { - "name": "Design & Anal of Algo", - "sections": { - "L1": { - "instructors": [ - "TATHAGAT RAY" - ], - "sched": [ - { - "room": "F102", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 8 - ] - } - ] - }, - "T1": { - "instructors": [ - "Rajib Ranjan Maiti", - "Srijanee Mookherji" + "Subhrakanta Panda" ], "sched": [ { - "room": "I213", + "room": "I114", "days": [ - "F" + "Th" ], "hours": [ - 1 + 9 ] } ] }, - "T2": { + "T3": { "instructors": [ - "Tathagat Ray", - "Srijanee Mookherji" + "Subhrakanta Panda" ], "sched": [ { - "room": "I213", + "room": "I114", "days": [ - "W" + "T" ], "hours": [ - 1 + 9 ] } ] }, - "T3": { + "T4": { "instructors": [ - "TO BE ANNOUNCED" + "D V N Siva Kumar" ], "sched": [ { - "room": "I211", + "room": "I122", "days": [ - "F" + "Th" ], "hours": [ - 1 + 9 ] } ] }, - "T4": { + "T5": { "instructors": [ - "TO BE ANNOUNCED" + "Lov Kumar" ], "sched": [ { - "room": "I211", + "room": "I122", "days": [ - "W" + "T" ], "hours": [ - 1 + 9 ] } ] } }, "compre": { - "date": "14/05", - "session": "AN" + "date": "19/05", + "session": "FN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" - } - }, - "CS F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "SURENDER SINGH S" - ], - "sched": [] - } - } - }, - "CS F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "SURENDER SINGH S" - ], - "sched": [] - } + "date": "16/03", + "time": "9.00am-10.30am" } }, - "CS F372": { - "name": "Operating Systems", + "CS F213": { + "name": "Object Oriented Prog", "sections": { "L1": { "instructors": [ - "RAKESH PANDEY" + "R GURURAJ" ], "sched": [ { - "room": "F208", + "room": "F108", "days": [ "M", "W", "F" ], "hours": [ - 8 + 2 ] } ] - } - }, - "compre": { - "date": "14/05", - "session": "AN" - }, - "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" - } - }, - "CS F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "SURENDER SINGH S" - ], - "sched": [] - } - } - }, - "CS F377": { - "name": "Design Project", - "sections": { - "L1": { + }, + "P1": { "instructors": [ - "SURENDER SINGH S" + "R Gururaj" ], - "sched": [] - } - } - }, - "CS F402": { - "name": "Computational Geometry", - "sections": { - "L1": { + "sched": [ + { + "room": "LAB", + "days": [ + "T" + ], + "hours": [ + 9, + 10 + ] + } + ] + }, + "P2": { "instructors": [ - "MANAJANNA B" + "Patiwar Shravan Kumar" ], "sched": [ { - "room": "F108", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 4 + 9, + 10 ] } ] } }, "compre": { - "date": "12/05", + "date": "11/05", "session": "FN" }, "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" + "date": "12/03", + "time": "9.00am-10.30am" } }, - "CS F407": { - "name": "Artificial Intelligence", + "CS F241": { + "name": "Microproc & Interfacing", "sections": { "L1": { "instructors": [ - "CHITTARANJAN HOTA", - "T Sahithi" + "PRASHANT WALI" ], "sched": [ { - "room": "F106", + "room": "F102", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 5 + 3 ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "CS F415": { - "name": "Data Mining", - "sections": { - "L1": { + }, + "L2": { "instructors": [ - "MANIK GUPTA", - "Srijanee Mookherji" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "F106", + "room": "F105", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 4 + 3 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "CS F441": { - "name": "Sel Topics From Comp Sc", - "sections": { - "L1": { + }, + "P1": { "instructors": [ - "DIPANJAN CHAKRABORTY" + "Prashant Wali", + "Swapna Challagundla" ], "sched": [ { - "room": "I111", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 5 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "CS G513": { - "name": "Network Security", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "RAJIB RANJAN MAITI" + "Anil Kumar U", + "Gowtham Polumati" ], "sched": [ { - "room": "I122", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "M" ], "hours": [ - 3 + 7, + 8 ] } ] }, - "P1": { + "P3": { "instructors": [ - "Rajib Ranjan Maiti" + "Harish Vijay Dixit", + "Swapna Challagundla" ], "sched": [ { - "room": "D331A", + "room": "LAB", "days": [ - "M", - "W" + "S" ], "hours": [ - 2, - 3 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "CS G520": { - "name": "Advanced Data Mining", - "sections": { - "L1": { + }, + "P4": { "instructors": [ - "JABEZ J CHRISTOPHER" + "S K Sahoo", + "Mrunali Dnyaneshwar Wagh" ], "sched": [ { - "room": "I122", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 4 + 6, + 7 ] } ] }, - "P1": { + "P5": { "instructors": [ - "Jabez J Christopher" + "Soumya J", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "D331A", + "room": "LAB", "days": [ - "F" + "T" ], "hours": [ - 2, - 3 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "12/12", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "CS G523": { - "name": "Software For Embedded Sys", - "sections": { - "L1": { + }, + "P6": { "instructors": [ - "SYED ERSHAD AHMED" + "Soumya J", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "F101", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ + 4, 5 ] } ] }, - "P1": { + "P7": { "instructors": [ - "Syed Ershad Ahmed", - "P Veda Bhanu" + "Naveen Bokka", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "J105", + "room": "LAB", "days": [ - "M", - "W" + "F" ], "hours": [ 7, @@ -7564,47 +4570,53 @@ ] } ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "1.30 -3.00 PM" - } - }, - "CS G524": { - "name": "Adv Computer Architecture", - "sections": { - "L1": { + }, + "P8": { "instructors": [ - "G GEETHAKUMARI" + "Sourav Nandi", + "Battina Sindhu" ], "sched": [ { - "room": "I114", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "M" ], "hours": [ - 5 + 7, + 8 ] } ] }, - "P1": { + "P9": { "instructors": [ - "G Geethakumari" + "Sourav Nandi", + "Battina Sindhu" ], "sched": [ { - "room": "D331A", + "room": "LAB", "days": [ - "F" + "W" + ], + "hours": [ + 7, + 8 + ] + } + ] + }, + "P10": { + "instructors": [ + "Karumbaiah Chappanda Nan", + "Sarda Sharma" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "T" ], "hours": [ 4, @@ -7612,458 +4624,419 @@ ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "3.30 - 5.00 PM" - } - }, - "DE G513": { - "name": "Tribology", - "sections": { - "L1": { + }, + "P11": { "instructors": [ - "PIYUSH CHANDRA VERMA", - "G R Sabareesh" + "Karumbaiah Chappanda Nan", + "Sarda Sharma" ], "sched": [ { - "room": "I122", + "room": "LAB", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 4 + 4, + 5 ] } ] }, - "P1": { + "P12": { "instructors": [ - "Piyush Chandra Verma" + "Ramakant", + "Mrunali Dnyaneshwar Wagh" ], "sched": [ { - "room": "E220", + "room": "LAB", "days": [ - "M", - "W" + "T" ], "hours": [ - 9, - 10 + 6, + 7 ] } ] - } - }, - "compre": { - "date": "02/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "DE G514": { - "name": "Fracture Mechanics", - "sections": { - "L1": { + }, + "P13": { "instructors": [ - "AMOL VUPPULURI" + "Ramakant", + "Gowtham Polumati" ], "sched": [ { - "room": "F207", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 3 + 7, + 8 ] } ] }, - "P1": { + "P14": { "instructors": [ - "Amol Vuppuluri" + "Anil Kumar U", + "Jayapiriya U S" ], "sched": [ { - "room": "E002", + "room": "LAB", "days": [ - "F" + "W" ], "hours": [ - 2, - 3 + 7, + 8 ] } ] }, - "P2": { + "P15": { "instructors": [ - "Amol Vuppuluri" + "TO BE ANNOUNCED", + "Kurakula Anudeep" ], "sched": [ { - "room": "E002", + "room": "LAB", "days": [ "F" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "ECE F241": { - "name": "Microproc & Interfacing", - "sections": { - "L1": { + }, + "P16": { "instructors": [ - "MB SRINIVAS" + "Naveen Bokka", + "Kurakula Anudeep" ], "sched": [ { - "room": "F105", + "room": "LAB", "days": [ - "T", - "Th", "S" ], "hours": [ - 4 + 4, + 5 ] } ] }, - "L2": { + "T1": { "instructors": [ - "MB Srinivas" + "Prashant Wali" ], "sched": [ { - "room": "F105", + "room": "I111", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 4 + 1 ] } ] }, - "P1": { + "T2": { "instructors": [ - "Suvadip Batabyal", - "Renuka.H" + "Prashant Wali" ], "sched": [ { - "room": "I012", + "room": "I111", "days": [ - "M" + "Th" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P2": { + "T3": { "instructors": [ - "Karumbaiah Chappanda Nan", - "Renuka.H" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "I012", + "room": "I112", "days": [ - "W" + "T" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P3": { + "T4": { "instructors": [ - "Karumbaiah Chappanda Nan", - "P Michael Preetam Raj" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "I012", + "room": "I112", "days": [ - "M" + "Th" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P4": { + "T5": { "instructors": [ - "Soumya J", - "P Michael Preetam Raj" + "Runa Kumari" ], "sched": [ { - "room": "I012", + "room": "I114", "days": [ - "W" + "T" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P5": { + "T6": { "instructors": [ - "S K Sahoo", - "Puneeth S B" + "Chetan Kumar V" ], "sched": [ { - "room": "I013", + "room": "I113", "days": [ - "W" + "T" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P6": { + "T7": { "instructors": [ - "S K Sahoo", - "Puneeth S B", - "Swapna Challagundla" + "Chetan Kumar V" ], "sched": [ { - "room": "I013", + "room": "I113", "days": [ - "M" + "Th" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P7": { + "T8": { "instructors": [ - "Runa Kumari", - "Prakash Palasram R", - "Swapna Challagundla" + "Prashant Wali" ], "sched": [ { - "room": "I013", + "room": "I210", "days": [ - "T" + "M" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P8": { + "T9": { "instructors": [ - "Runa Kumari", - "Prakash Palasram R" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "I013", + "room": "I114", "days": [ - "F" + "W" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P9": { + "T10": { "instructors": [ - "Ramakant", - "G Jayeshkumar Pintubhai" + "Subhradeep Pal" ], "sched": [ { - "room": "I013", + "room": "I122", "days": [ - "M" + "T" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P10": { + "T11": { "instructors": [ - "Ramakant", - "G Jayeshkumar Pintubhai" + "Subhradeep Pal" ], "sched": [ { - "room": "I013", + "room": "I122", "days": [ - "W" + "Th" ], "hours": [ - 2, - 3 + 1 ] } ] - }, - "P11": { + } + }, + "compre": { + "date": "06/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "9.00am-10.30am" + } + }, + "CS F266": { + "name": "Study Project", + "sections": { + "L1": { "instructors": [ - "Ramakant", - "Naveen Bokka" + "BARSHA MITRA" + ], + "sched": [] + } + } + }, + "CS F303": { + "name": "Computer Networks", + "sections": { + "L1": { + "instructors": [ + "SUVADIP BATABYAL" ], "sched": [ { - "room": "I013", + "room": "F105", "days": [ + "M", + "W", "F" ], "hours": [ - 2, - 3 + 9 ] } ] }, - "P12": { + "P1": { "instructors": [ - "Sandeep Kumar", - "Naveen Bokka" + "Suvadip Batabyal", + "Mandan Naresh" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "T" + "F" ], "hours": [ - 7, - 8 + 4, + 5 ] } ] }, - "P13": { + "P2": { "instructors": [ - "Prashant Wali", - "Priyanka B G" + "DipanJan Chakraborty", + "Chavali Lalitha" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "F" + "W" ], "hours": [ - 7, - 8 + 4, + 5 ] } ] }, - "P14": { + "P3": { "instructors": [ - "Ramakant", - "Priyanka B G" + "Paresh Saxena", + "Mandan Naresh" ], "sched": [ { - "room": "I013", + "room": "LAB", "days": [ - "Th" + "T" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] }, - "P15": { + "P4": { "instructors": [ - "Suvadip Batabyal", - "Sarda Sharma", - "Venkatarao Selamneni" + "Nikumani Choudhury", + "Pattiwar Shravan Kumar" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "F" + "M" ], "hours": [ - 2, - 3 + 4, + 5 ] } ] }, - "P16": { + "P5": { "instructors": [ - "Soumya J", - "Sarda Sharma" + "Rajib Ranjan Maiti", + "Pattiwar Shravan Kumar" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ "Th" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] @@ -8076,7 +5049,7 @@ { "room": "I111", "days": [ - "T" + "M" ], "hours": [ 1 @@ -8086,13 +5059,13 @@ }, "T2": { "instructors": [ - "MB Srinivas" + "Paresh Saxena" ], "sched": [ { - "room": "I111", + "room": "I112", "days": [ - "Th" + "M" ], "hours": [ 1 @@ -8102,13 +5075,13 @@ }, "T3": { "instructors": [ - "Amit Ranjan Azad" + "Nikumani Choudhury" ], "sched": [ { - "room": "I112", + "room": "I114", "days": [ - "T" + "M" ], "hours": [ 1 @@ -8118,13 +5091,13 @@ }, "T4": { "instructors": [ - "Amit Ranjan Azad" + "Rajib Ranjan Maiti" ], "sched": [ { - "room": "I112", + "room": "I113", "days": [ - "Th" + "M" ], "hours": [ 1 @@ -8134,190 +5107,234 @@ }, "T5": { "instructors": [ - "Prashant Wali" + "DipanJan Chakraborty" ], "sched": [ { - "room": "I113", + "room": "I122", "days": [ - "T" + "M" ], "hours": [ 1 ] } ] - }, - "T6": { + } + }, + "compre": { + "date": "09/05", + "session": "FN" + }, + "midsem": { + "date": "11/03", + "time": "9.00am-10.30am" + } + }, + "CS F342": { + "name": "Computer Architecture", + "sections": { + "L1": { "instructors": [ - "Prashant Wali" + "CHETAN KUMAR V" ], "sched": [ { - "room": "I113", + "room": "F104", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 1 + 3 ] } ] }, - "T7": { + "P1": { "instructors": [ - "TO BE ANNOUNCED" + "Chetan Kumar V", + "Sharvani Gadgil" ], "sched": [ { - "room": "I114", + "room": "LAB", "days": [ "T" ], "hours": [ - 1 + 8, + 9 ] } ] }, - "T8": { + "P2": { "instructors": [ - "TO BE ANNOUNCED" + "Chetan Kumar V", + "Vikash Singh" ], "sched": [ { - "room": "I114", + "room": "LAB", "days": [ "Th" ], "hours": [ - 1 + 8, + 9 ] } ] }, - "T9": { + "P3": { "instructors": [ - "Sanjay Vidhyadharan" + "Sharvani Gadgil", + "Vikash Singh" ], "sched": [ { - "room": "I222", + "room": "LAB", "days": [ - "T" + "M" ], "hours": [ - 1 + 4, + 5 + ] + } + ] + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "CS F363": { + "name": "Compiler Construction", + "sections": { + "L1": { + "instructors": [ + "ARUNA MALAPATI" + ], + "sched": [ + { + "room": "F105", + "days": [ + "M", + "W" + ], + "hours": [ + 8 ] } ] }, - "T10": { + "P1": { "instructors": [ - "Suvadip Batabyal" + "Raghunath Reddy M", + "S Vishwanath Reddy" ], "sched": [ { - "room": "I222", + "room": "LAB", "days": [ - "Th" + "T" ], "hours": [ - 1 + 8, + 9 ] } ] - } - }, - "compre": { - "date": "02/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "ECE F242": { - "name": "Control Systems", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "HARISH VIJAY DIXIT" + "Raghunath Reddy M", + "Ramisetty Kavya" ], "sched": [ { - "room": "F105", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "M" ], "hours": [ + 4, 5 ] } ] }, - "L2": { + "P3": { "instructors": [ - "Ankur Bhattacharjee" + "Sameera Muhammed Salam", + "Chillara Anil Kumar" ], "sched": [ { - "room": "F103", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ + 4, 5 ] } ] }, - "T1": { + "P4": { "instructors": [ - "Harish Vijay Dixit" + "R Gururaj", + "S Vishwanath Reddy" ], "sched": [ { - "room": "I210", + "room": "LAB", "days": [ - "T" + "W" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T2": { + "P5": { "instructors": [ - "Harish Vijay Dixit" + "Jabez J Christopher", + "Ramisetty Kavya" ], "sched": [ { - "room": "I210", + "room": "LAB", "days": [ "Th" ], "hours": [ - 1 + 8, + 9 ] } ] }, - "T3": { + "T1": { "instructors": [ - "Ankur Bhattacharjee" + "Raghunath Reddy M" ], "sched": [ { - "room": "I211", + "room": "I111", "days": [ - "T" + "W" ], "hours": [ 1 @@ -8325,15 +5342,15 @@ } ] }, - "T4": { + "T2": { "instructors": [ - "Ankur Bhattacharjee" + "Raghunath Reddy M" ], "sched": [ { - "room": "I211", + "room": "I114", "days": [ - "Th" + "F" ], "hours": [ 1 @@ -8341,15 +5358,31 @@ } ] }, - "T5": { + "T3": { "instructors": [ - "Balasubramanian M" + "Raghunath Reddy M" ], "sched": [ { - "room": "I212", + "room": "I111", "days": [ - "T" + "F" + ], + "hours": [ + 8 + ] + } + ] + }, + "T4": { + "instructors": [ + "Jabez J Christopher" + ], + "sched": [ + { + "room": "I112", + "days": [ + "W" ], "hours": [ 1 @@ -8357,15 +5390,15 @@ } ] }, - "T6": { + "T5": { "instructors": [ - "Balasubramanian M" + "Jabez J Christopher" ], "sched": [ { - "room": "I212", + "room": "I112", "days": [ - "Th" + "F" ], "hours": [ 1 @@ -8375,28 +5408,28 @@ } }, "compre": { - "date": "08/05", - "session": "FN" + "date": "12/05", + "session": "AN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "3.30pm-5.00pm" } }, - "ECE F243": { - "name": "Signals & Systems", + "CS F364": { + "name": "Design & Anal of Algo", "sections": { "L1": { "instructors": [ - "BVVSN PRABHAKAR RAO" + "TATHAGATA RAY" ], "sched": [ { - "room": "F104", + "room": "F105", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 4 @@ -8404,260 +5437,430 @@ } ] }, - "L2": { + "T1": { "instructors": [ - "TO BE ANNOUNCED" + "Manjanna B" ], "sched": [ { - "room": "F103", + "room": "I114", + "days": [ + "W" + ], + "hours": [ + 1 + ] + } + ] + }, + "T2": { + "instructors": [ + "Manjanna B" + ], + "sched": [ + { + "room": "I113", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 4 + 1 ] } ] }, - "T1": { + "T3": { "instructors": [ - "BVVSN Prabhakar Rao" + "Manjanna B" ], "sched": [ { - "room": "I210", + "room": "I113", "days": [ - "S" + "T" ], "hours": [ - 1 + 7 ] } ] }, - "T2": { + "T4": { "instructors": [ - "BVVSN Prabhakar Rao" + "Raghunath Reddy M" ], "sched": [ { - "room": "I210", + "room": "I114", "days": [ "Th" ], "hours": [ - 9 + 7 ] } ] }, - "T3": { + "T5": { "instructors": [ - "Venkateswaran R" + "S Vishwanath Reddy" ], "sched": [ { - "room": "I211", + "room": "I122", "days": [ - "S" + "F" ], "hours": [ 1 ] } ] - }, - "T4": { + } + }, + "compre": { + "date": "18/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "3.30pm-5.00pm" + } + }, + "CS F366": { + "name": "Laboratory Project", + "sections": { + "L1": { "instructors": [ - "Venkateswaran R" + "BARSHA MITRA" + ], + "sched": [] + } + } + }, + "CS F367": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "BARSHA MITRA" + ], + "sched": [] + } + } + }, + "CS F372": { + "name": "Operating Systems", + "sections": { + "L1": { + "instructors": [ + "DIPANJAN CHAKRABORTY", + "Mandan Naresh" ], "sched": [ { - "room": "I211", + "room": "F108", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 9 + 3 ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "CS F376": { + "name": "Design Project", + "sections": { + "L1": { "instructors": [ - "Rajesh Kumar Tripathy" + "BARSHA MITRA" + ], + "sched": [] + } + } + }, + "CS F377": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "BARSHA MITRA" + ], + "sched": [] + } + } + }, + "CS F407": { + "name": "Artificial Intelligence", + "sections": { + "L1": { + "instructors": [ + "CHITTARANJAN HOTA", + "K Sai Anirudh", + "Prerna Saurabh" ], "sched": [ { - "room": "I212", + "room": "F106", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 1 + 3 ] } ] - }, - "T6": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "CS F415": { + "name": "Data Mining", + "sections": { + "L1": { "instructors": [ - "Rajesh Kumar Tripathy" + "APURBA DAS", + "Deepa Kumari" ], "sched": [ { - "room": "I212", + "room": "F106", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 9 + 7 ] } ] } }, "compre": { - "date": "12/05", + "date": "10/05", "session": "AN" }, "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" + "date": "11/03", + "time": "3.30pm-5.00pm" } }, - "ECE F244": { - "name": "Microelectronic Circuits", + "CS F441": { + "name": "Sel Topics From Comp Sc", "sections": { "L1": { "instructors": [ - "PARIKSHIT PARSHURAM S" + "RAMASWAMY VENKATAKR" ], "sched": [ { - "room": "F105", + "room": "F106", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 5 ] } ] - }, - "L2": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "CS F469": { + "name": "Information Retrieval", + "sections": { + "L1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "NL BHANUMURTHY", + "Deepa Kumari" ], "sched": [ { - "room": "F104", + "room": "F106", "days": [ "M", "W", "F" ], "hours": [ - 5 + 2 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" + } + }, + "CS G513": { + "name": "Network Security", + "sections": { + "L1": { "instructors": [ - "Parikshit Parshuram Sahatiy" + "RAJIB RANJAN MAITI" ], "sched": [ { "room": "I111", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 9 + 5 ] } ] }, - "T2": { + "P1": { "instructors": [ - "Parikshit Parshuram Sahatiy" + "Rajib Ranjan Maiti", + "Anand Agrawal" ], "sched": [ { - "room": "I111", + "room": "LAB", "days": [ - "Th" + "W" ], "hours": [ + 8, 9 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "07/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "1.30pm-3.00pm" + } + }, + "CS G516": { + "name": "Advanced Database Systems", + "sections": { + "L1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "SUBHRAKANTA PANDA" ], "sched": [ { - "room": "I112", + "room": "I111", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 9 + 2 ] } ] }, - "T4": { + "P1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "Subhrakanta Panda" ], "sched": [ { - "room": "I112", + "room": "LAB", "days": [ - "S" + "F" ], "hours": [ - 1 + 8, + 9 ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "10/05", + "session": "FN" + }, + "midsem": { + "date": "11/03", + "time": "1.30pm-3.00pm" + } + }, + "CS G520": { + "name": "Advanced Data Mining", + "sections": { + "L1": { "instructors": [ - "Surya Shankar Dan" + "JABEZ J CHRISTOPHER" ], "sched": [ { - "room": "I113", + "room": "I111", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 9 + 3 ] } ] }, - "T6": { + "P1": { "instructors": [ - "Surya Shankar Dan" + "Ramisetty Kavya" ], "sched": [ { - "room": "I113", + "room": "LAB", "days": [ - "Th" + "T" ], "hours": [ + 8, 9 ] } @@ -8665,92 +5868,95 @@ } }, "compre": { - "date": "14/05", + "date": "12/05", "session": "FN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" + "date": "12/03", + "time": "1.30pm-3.00pm" } }, - "ECE F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "MITHUN MONDAL" - ], - "sched": [] - } - } - }, - "ECE F341": { - "name": "Analog Electronics", + "CS G523": { + "name": "Software For Embedded Sys", "sections": { "L1": { "instructors": [ - "SOUVIK KUNDU" + "SOUMYA J" ], "sched": [ { - "room": "F105", + "room": "I112", "days": [ "M", "W", "F" ], "hours": [ - 2 + 3 ] } ] }, - "L2": { + "P1": { "instructors": [ - "Prasant Kumar P" + "Soumya J", + "Aparna Nair M K" ], "sched": [ { - "room": "F103", + "room": "LAB", "days": [ - "M", - "W", + "Th", "F" ], "hours": [ - 2 + 8, + 9 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "07/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "1.30pm-3.00pm" + } + }, + "CS G524": { + "name": "Adv Computer Architecture", + "sections": { + "L1": { "instructors": [ - "Souvik Kundu", - "P Joshna" + "G GEETHAKUMARI" ], "sched": [ { - "room": "J106", + "room": "I111", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 6, - 7 + 4 ] } ] }, - "P2": { + "P1": { "instructors": [ - "Souvik Kundu", - "P Joshna" + "G Geethakumari", + "Chillara Anil Kumar" ], "sched": [ { - "room": "J106", + "room": "LAB", "days": [ - "Th" + "M" ], "hours": [ 8, @@ -8758,35 +5964,48 @@ ] } ] - }, - "P3": { + } + }, + "compre": { + "date": "14/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "3.30pm-5.00pm" + } + }, + "DE G513": { + "name": "Tribology", + "sections": { + "L1": { "instructors": [ - "Prasant Kumar P", - "Chowta Mallikharjunarao" + "PRABAKARAN SARAVANA" ], "sched": [ { - "room": "J106", + "room": "G107", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 4, 5 ] } ] }, - "P4": { + "P1": { "instructors": [ - "Chetan Kumar V", - "Chowta Mallikharjunarao" + "Prabakaran Saravanan" ], "sched": [ { - "room": "J106", + "room": "E220", "days": [ - "T" + "T", + "Th" ], "hours": [ 8, @@ -8794,568 +6013,490 @@ ] } ] - }, - "P5": { - "instructors": [ - "S K Chatterjee", - "Mary Vallankanni Manik" - ], - "sched": [ - { - "room": "J106", - "days": [ - "F" - ], - "hours": [ - 4, - 5 - ] - } - ] - }, - "P6": { + } + }, + "compre": { + "date": "12/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "1.30pm-3.00pm" + } + }, + "DE G514": { + "name": "Fracture Mechanics", + "sections": { + "L1": { "instructors": [ - "Ponnalagu R N", - "Mary Vallankanni Manik" + "AMOL VUPPULURI" ], "sched": [ { - "room": "J106", + "room": "G208", "days": [ - "W" + "T", + "Th", + "S" ], "hours": [ - 4, - 5 + 4 ] } ] }, - "T1": { + "P1": { "instructors": [ - "Souvik Kundu" + "Amol Vuppuluri", + "Brajesh Kumar Panigrahi" ], "sched": [ { - "room": "I111", + "room": "E002", "days": [ - "T" + "W", + "F" ], "hours": [ + 6, 7 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "18/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "1.30pm-3.00pm" + } + }, + "ECE F216": { + "name": "Electronic Devices Simulation Laboratory", + "sections": { + "L1": { "instructors": [ - "Prasant Kumar P" + "SAYAN KANUNGO", + "Aditya Tiwari", + "Parikshit Parshuram Sahatiy" ], "sched": [ { - "room": "I112", + "room": "LAB", "days": [ - "T" + "M", + "W" ], "hours": [ + 6, 7 ] } ] - }, - "T3": { + } + } + }, + "ECE F241": { + "name": "Microproc & Interfacing", + "sections": { + "L1": { "instructors": [ - "Prasant Kumar P" + "PRASHANT WALI" ], "sched": [ { - "room": "I112", + "room": "F102", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 7 + 3 ] } ] }, - "T4": { + "L2": { "instructors": [ - "S K Chatterjee" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "I111", + "room": "F105", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 1 + 3 ] } ] }, - "T5": { + "P1": { "instructors": [ - "S K Chatterjee" + "Prashant Wali", + "Swapna Challagundla" ], "sched": [ { - "room": "I111", + "room": "LAB", "days": [ - "S" + "T" ], "hours": [ - 1 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" - } - }, - "ECE F343": { - "name": "Communication Networks", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "S K SAHOO" + "Anil Kumar U", + "Gowtham Polumati" ], "sched": [ { - "room": "F103", + "room": "LAB", "days": [ - "M", - "W", - "F" + "M" ], "hours": [ - 3 + 7, + 8 ] } ] }, - "T1": { + "P3": { "instructors": [ - "S K Sahoo" + "Harish Vijay Dixit", + "Swapna Challagundla" ], "sched": [ { - "room": "I212", + "room": "LAB", "days": [ - "F" + "S" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T2": { + "P4": { "instructors": [ - "S K Sahoo" + "S K Sahoo", + "Mrunali Dnyaneshwar Wagh" ], "sched": [ { - "room": "I112", + "room": "LAB", "days": [ - "W" + "Th" ], "hours": [ - 1 + 6, + 7 ] } ] - } - }, - "compre": { - "date": "01/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" - } - }, - "ECE F344": { - "name": "Info Theory & Coding", - "sections": { - "L1": { + }, + "P5": { "instructors": [ - "RUNA KUMARI" + "Soumya J", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "F108", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 3 + 4, + 5 ] } ] }, - "T1": { + "P6": { "instructors": [ - "Runa Kumari" + "Soumya J", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I210", + "room": "LAB", "days": [ - "F" + "Th" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T2": { + "P7": { "instructors": [ - "Runa Kumari" + "Naveen Bokka", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I210", + "room": "LAB", "days": [ - "W" + "F" ], "hours": [ - 1 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "ECE F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "PARIKSHIT PARSHURAM S" - ], - "sched": [] - } - } - }, - "ECE F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "PARIKSHIT PARSHURAM S" - ], - "sched": [] - } - } - }, - "ECE F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "KARUMBAIAH CHAPPANDA" - ], - "sched": [] - } - } - }, - "ECE F377": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "KARUMBAIAH CHAPPANDA" - ], - "sched": [] - } - } - }, - "ECON F211": { - "name": "Principles of Economics", - "sections": { - "L1": { + }, + "P8": { "instructors": [ - "ARCHANA SRIVASTAVA" + "Sourav Nandi", + "Battina Sindhu" ], "sched": [ { - "room": "F108", + "room": "LAB", "days": [ - "M", - "W", - "F" + "M" ], "hours": [ - 9 + 7, + 8 ] } ] }, - "L2": { + "P9": { "instructors": [ - "Sudatta Banerjee" + "Sourav Nandi", + "Battina Sindhu" ], "sched": [ { - "room": "F107", + "room": "LAB", "days": [ - "M", - "W", - "F" + "W" ], "hours": [ - 9 + 7, + 8 ] } ] }, - "L3": { + "P10": { "instructors": [ - "Rishi Kumar" + "Karumbaiah Chappanda Nan", + "Sarda Sharma" ], "sched": [ { - "room": "G108", + "room": "LAB", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 9 + 4, + 5 ] } ] }, - "L4": { + "P11": { "instructors": [ - "Bheemeshwar Reddy A" + "Karumbaiah Chappanda Nan", + "Sarda Sharma" ], "sched": [ { - "room": "G107", + "room": "LAB", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 9 + 4, + 5 ] } ] }, - "L5": { + "P12": { "instructors": [ - "Mini Thomas", - "Dushyant Kumar" + "Ramakant", + "Mrunali Dnyaneshwar Wagh" ], "sched": [ { - "room": "G106", + "room": "LAB", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 9 + 6, + 7 ] } ] }, - "T1": { + "P13": { "instructors": [ - "Archana Srivastava", - "Ummuhabeeba Chaliyan" + "Ramakant", + "Gowtham Polumati" ], "sched": [ { - "room": "F108", + "room": "LAB", "days": [ - "F" + "Th" ], "hours": [ - 1 + 7, + 8 ] } ] }, - "T2": { + "P14": { "instructors": [ - "Sudatta Banerjee", - "Keerti Mallela" + "Anil Kumar U", + "Jayapiriya U S" ], "sched": [ { - "room": "F107", + "room": "LAB", "days": [ - "F" + "W" ], "hours": [ - 1 + 7, + 8 ] } ] }, - "T3": { + "P15": { "instructors": [ - "Rishi Kumar" + "TO BE ANNOUNCED", + "Kurakula Anudeep" ], "sched": [ { - "room": "G108", + "room": "LAB", "days": [ "F" ], "hours": [ - 1 + 7, + 8 ] } ] }, - "T4": { + "P16": { "instructors": [ - "Bheemeshwar Reddy A" + "Naveen Bokka", + "Kurakula Anudeep" ], "sched": [ { - "room": "G107", + "room": "LAB", "days": [ - "F" + "S" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T5": { + "T1": { "instructors": [ - "Mini Thomas", - "Dushyant Kumar" + "Prashant Wali" ], "sched": [ { - "room": "G106", + "room": "I111", "days": [ - "F" + "T" ], "hours": [ 1 ] } ] - } - }, - "compre": { - "date": "05/05", - "session": "FN" - }, - "midsem": { - "date": "3/3", - "time": "1.30 -3.00 PM" - } - }, - "ECON F212": { - "name": "Funda of Fin and Account", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "NIRANJAN SWAIN" + "Prashant Wali" ], "sched": [ { - "room": "F208", + "room": "I111", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 10 + 1 ] } ] }, - "L2": { + "T3": { "instructors": [ - "T Nagaraju" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "F207", + "room": "I112", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 10 + 1 ] } ] - } - }, - "compre": { - "date": "03/05", - "session": "FN" - }, - "midsem": { - "date": "1/3", - "time": "11.00 -12.30 PM" - } - }, - "ECON F241": { - "name": "Econometric Methods", - "sections": { - "L1": { + }, + "T4": { "instructors": [ - "BHEEMESHWAR REDDY A" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "G108", + "room": "I112", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 4 + 1 ] } ] }, - "T1": { + "T5": { "instructors": [ - "Bheemeshwar Reddy A", - "Athary Janiso" + "Runa Kumari" ], "sched": [ { - "room": "G108", + "room": "I114", "days": [ "T" ], @@ -9364,46 +6505,30 @@ ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "AN" - }, - "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" - } - }, - "ECON F242": { - "name": "Microeconomics", - "sections": { - "L1": { + }, + "T6": { "instructors": [ - "DUSHYANT KUMAR" + "Chetan Kumar V" ], "sched": [ { - "room": "G108", + "room": "I113", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 5 + 1 ] } ] }, - "T1": { + "T7": { "instructors": [ - "Dushyant Kumar", - "Prakash Kumar Shukla" + "Chetan Kumar V" ], "sched": [ { - "room": "G108", + "room": "I113", "days": [ "Th" ], @@ -9412,329 +6537,211 @@ ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "FN" - }, - "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" - } - }, - "ECON F243": { - "name": "Macroeconomics", - "sections": { - "L1": { + }, + "T8": { "instructors": [ - "SUNNY KUMAR SINGH" + "Prashant Wali" ], "sched": [ { - "room": "G108", + "room": "I210", "days": [ - "M", - "W", - "F" + "M" ], "hours": [ - 4 + 1 ] } ] }, - "T1": { + "T9": { "instructors": [ - "Sunny Kumar Singh", - "Salva.K" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "G108", + "room": "I114", "days": [ - "S" + "W" ], "hours": [ 1 ] } ] - } - }, - "compre": { - "date": "02/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "ECON F244": { - "name": "Economic of Growth & Dev", - "sections": { - "L1": { + }, + "T10": { "instructors": [ - "SUDATTA BANERJEE" + "Subhradeep Pal" ], "sched": [ { - "room": "G108", + "room": "I122", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 5 + 1 ] } ] }, - "T1": { + "T11": { "instructors": [ - "Sudatta Banerjee", - "Bincy George" + "Subhradeep Pal" ], "sched": [ { - "room": "G108", + "room": "I122", "days": [ - "T" + "Th" ], "hours": [ - 7 + 1 ] } ] } }, "compre": { - "date": "14/05", + "date": "06/05", "session": "FN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" - } - }, - "ECON F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "SWATI ALOK" - ], - "sched": [] - } + "date": "10/03", + "time": "9.00am-10.30am" } }, - "ECON F314": { - "name": "Industrial Economics", + "ECE F242": { + "name": "Control Systems", "sections": { "L1": { "instructors": [ - "DUSHYANT KUMAR" + "PRATYUSH CHAKRABORT", + "Ankur Bhattacharjee" ], "sched": [ { - "room": "J115", + "room": "F102", "days": [ "M", "W", "F" ], "hours": [ - 6 + 2 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "AN" - }, - "midsem": { - "date": "6/3", - "time": "3.30 - 5.00 PM" - } - }, - "ECON F315": { - "name": "Financial Management", - "sections": { - "L1": { + }, + "L2": { "instructors": [ - "NIVEDITA SINHA" + "Alivelu Manga Parimi", + "Joyjit Mukherjee" ], "sched": [ { - "room": "F207", - "days": [ - "T", - "Th" - ], - "hours": [ - 10 - ] - }, - { - "room": "F207", + "room": "F105", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 6 + 2 ] } ] }, - "L2": { + "T1": { "instructors": [ - "Niranjan Swain" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "F208", - "days": [ - "T", - "Th" - ], - "hours": [ - 10 - ] - }, - { - "room": "F208", + "room": "I210", "days": [ - "S" + "T" ], "hours": [ - 6 + 9 ] } ] - } - }, - "compre": { - "date": "03/05", - "session": "FN" - }, - "midsem": { - "date": "1/3", - "time": "11.00 -12.30 PM" - } - }, - "ECON F341": { - "name": "Public Fin Theo & Policy", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "MINI THOMAS", - "Shreya Biswas" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "G108", + "room": "I210", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 2 + 9 ] } ] }, - "T1": { + "T3": { "instructors": [ - "Mini Thomas" + "Alivelu Manga Parimi" ], - "sched": [ - { - "room": "J120", - "days": [ - "M" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "ECON F342": { - "name": "Applied Econometrics", - "sections": { - "L1": { + "sched": [ + { + "room": "I211", + "days": [ + "T" + ], + "hours": [ + 9 + ] + } + ] + }, + "T4": { "instructors": [ - "RISHI KUMAR" + "Manish Laxminarayan Bhaiy" ], "sched": [ { - "room": "G108", + "room": "I211", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 3 + 9 ] } ] }, - "T1": { + "T5": { "instructors": [ - "Rishi Kumar" + "Pratyush Chakraborty" ], "sched": [ { - "room": "J120", + "room": "I212", "days": [ "W" ], "hours": [ - 1 + 5 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "ECON F343": { - "name": "Economic Anal of Pub Pol", - "sections": { - "L1": { + }, + "T6": { "instructors": [ - "DURGESH C PATHAK" + "Pratyush Chakraborty" ], "sched": [ { - "room": "G105", + "room": "I212", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ 9 @@ -9742,18 +6749,18 @@ } ] }, - "T1": { + "T7": { "instructors": [ - "Durgesh C Pathak" + "Joyjit Mukherjee" ], "sched": [ { - "room": "G105", + "room": "I212", "days": [ - "F" + "W" ], "hours": [ - 1 + 5 ] } ] @@ -9761,810 +6768,667 @@ }, "compre": { "date": "11/05", - "session": "FN" + "session": "AN" }, "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "ECON F354": { - "name": "Derivatives & Risk Mgmt", + "ECE F243": { + "name": "Signals & Systems", "sections": { "L1": { "instructors": [ - "T NAGARAJU", - "Shreya Biswas" + "RAMAKANT" ], "sched": [ { - "room": "F208", + "room": "F105", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 7 + 3 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "ECON F355": { - "name": "Buss Anal & Valuation", - "sections": { - "L1": { + }, + "L2": { "instructors": [ - "NEMIRAJA JADIYAPPA" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "F208", + "room": "F104", "days": [ "T", "Th", "S" ], "hours": [ - 4 + 3 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "ECON F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "SWATI ALOK" - ], - "sched": [] - } - } - }, - "ECON F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "SWATI ALOK" - ], - "sched": [] - } - } - }, - "ECON F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "SWATI ALOK" - ], - "sched": [] - } - } - }, - "ECON F377": { - "name": "Design Project", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "SWATI ALOK" + "Ramakant" ], - "sched": [] - } - } - }, - "ECON F411": { - "name": "Project Appraisal", - "sections": { - "L1": { + "sched": [ + { + "room": "I213", + "days": [ + "T" + ], + "hours": [ + 1 + ] + } + ] + }, + "T2": { "instructors": [ - "SUNNY KUMAR SINGH" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "J107", + "room": "I210", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 8 + 1 ] } ] - } - }, - "compre": { - "date": "14/05", - "session": "AN" - }, - "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" - } - }, - "ECON F412": { - "name": "Secur Anal & Portfol Mgt", - "sections": { - "L1": { + }, + "T3": { "instructors": [ - "NEMIRAJA JADIYAPPA" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "J120", + "room": "I210", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 9 + 1 ] } ] }, - "L2": { + "T4": { "instructors": [ - "Shreya Biswas" + "Venkateswaran R" ], "sched": [ { - "room": "F107", + "room": "I211", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 5 + 1 ] } ] - } - }, - "compre": { - "date": "07/05", - "session": "FN" - }, - "midsem": { - "date": "8/3", - "time": "11.00 -12.30 PM" - } - }, - "ECON F414": { - "name": "Creat & Lead Entrep Orgn", - "sections": { - "L1": { + }, + "T5": { "instructors": [ - "R RAGHUNATHAN" + "Venkateswaran R" ], "sched": [ { - "room": "J107", + "room": "I211", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 9 + 1 ] } ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "ECON F434": { - "name": "International Business", - "sections": { - "L1": { + }, + "T6": { "instructors": [ - "ARCHANA SRIVASTAVA" + "Amit Ranjan Azad" ], "sched": [ { - "room": "J115", - "days": [ - "T", - "Th", - "S" + "room": "I212", + "days": [ + "T" ], "hours": [ - 4 + 9 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "ECON F435": { - "name": "Marketing Research", - "sections": { - "L1": { + }, + "T7": { "instructors": [ - "C H YAGANTI" + "Amit Ranjan Azad" ], "sched": [ { - "room": "J115", + "room": "I212", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 8 + 1 ] } ] } }, "compre": { - "date": "14/05", - "session": "AN" + "date": "19/05", + "session": "FN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "9.00am-10.30am" } }, - "EEE F111": { - "name": "Electrical Sciences", + "ECE F244": { + "name": "Microelectronic Circuits", "sections": { "L1": { "instructors": [ - "PONNALAGU R N", - "Samit Kumar Ghosh" + "SYED ERSHAD AHMED" ], "sched": [ { "room": "F105", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 9 + 2 ] } ] }, "L2": { "instructors": [ - "Mithun Mondal" + "Karumbaiah Chappanda Nan" ], "sched": [ { "room": "F104", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 9 + 2 ] } ] }, "T1": { "instructors": [ - "Mithun Mondal" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "I111", + "room": "J121", "days": [ "T" ], "hours": [ - 3 + 9 ] } ] }, "T2": { "instructors": [ - "Mithun Mondal" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "I111", + "room": "J121", "days": [ - "S" + "Th" ], "hours": [ - 3 + 9 ] } ] }, "T3": { "instructors": [ - "Ponnalagu R N" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "I112", + "room": "J121", "days": [ - "T" + "F" ], "hours": [ - 3 + 1 ] } ] }, "T4": { "instructors": [ - "Ponnalagu R N" + "Karumbaiah Chappanda Nan" ], "sched": [ { - "room": "I112", + "room": "J206", "days": [ - "S" + "T" ], "hours": [ - 3 + 9 ] } ] }, "T5": { "instructors": [ - "Sayan Kanungo" + "Karumbaiah Chappanda Nan" ], "sched": [ { - "room": "I113", + "room": "J206", "days": [ - "T" + "Th" ], "hours": [ - 3 + 9 ] } ] }, "T6": { "instructors": [ - "Sayan Kanungo" + "Surya Shankar Dan" ], "sched": [ { - "room": "I113", + "room": "J214", "days": [ - "S" + "T" ], "hours": [ - 3 + 9 ] } ] }, "T7": { "instructors": [ - "STP Srinivas" + "Surya Shankar Dan" ], "sched": [ { - "room": "I211", + "room": "J214", "days": [ - "T" + "Th" ], "hours": [ - 3 + 9 ] } ] - }, - "T8": { + } + }, + "compre": { + "date": "17/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "11.00am-12.30pm" + } + }, + "ECE F266": { + "name": "Study Project", + "sections": { + "L1": { "instructors": [ - "STP Srinivas" + "STP SRINIVAS" + ], + "sched": [] + } + } + }, + "ECE F312": { + "name": "Em Fields Lab Micro Engg Lab", + "sections": { + "L1": { + "instructors": [ + "HARISH VIJAY DIXIT", + "G Jayeshkumar Pintubhai" ], "sched": [ { - "room": "I212", + "room": "LAB", "days": [ - "S" + "Th" ], "hours": [ - 3 + 8, + 9 ] } ] } - }, - "compre": { - "date": "06/05", - "session": "FN" - }, - "midsem": { - "date": "4/3", - "time": "11.00 -12.30 PM" } }, - "EEE F241": { - "name": "Microproc & Interfacing", + "ECE F341": { + "name": "Analog Electronics", "sections": { "L1": { "instructors": [ - "MB SRINIVAS" + "PRASANT KUMAR P" ], "sched": [ { - "room": "F105", + "room": "J214", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 4 + 8 ] } ] }, "L2": { "instructors": [ - "MB Srinivas" + "Amit Kumar Panda" ], "sched": [ { - "room": "F105", + "room": "F104", "days": [ "M", "W", "F" ], "hours": [ - 4 + 8 ] } ] }, "P1": { "instructors": [ - "Suvadip Batabyal", - "Renuka.H" + "Prasant Kumar P", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "M" + "F" ], "hours": [ - 2, - 3 + 4, + 5 ] } ] }, "P2": { "instructors": [ - "Karumbaiah Chappanda Nan", - "Renuka.H" + "Prasant Kumar P", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "W" + "M" ], "hours": [ - 2, - 3 + 4, + 5 ] } ] }, "P3": { "instructors": [ - "Karumbaiah Chappanda Nan", - "P Michael Preetam Raj" + "Rajesh Kumar Tripathy", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "M" + "W" ], "hours": [ - 7, - 8 + 4, + 5 ] } ] }, "P4": { "instructors": [ - "Soumya J", - "P Michael Preetam Raj" + "Chaluvadi V Naga Bhaskar", + "Renuka.H" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "W" + "T" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] }, "P5": { "instructors": [ - "S K Sahoo", - "Puneeth S B" + "Joyjit Mukherjee", + "Chaluvadi V Naga Bhaskar" ], "sched": [ { - "room": "I013", + "room": "LAB", "days": [ - "W" + "Th" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] }, "P6": { "instructors": [ - "S K Sahoo", - "Puneeth S B", - "Swapna Challagundla" + "Joyjit Mukherjee" ], "sched": [ { - "room": "I013", + "room": "LAB", "days": [ "M" ], "hours": [ - 7, - 8 - ] - } - ] - }, - "P7": { - "instructors": [ - "Runa Kumari", - "Prakash Palasram R", - "Swapna Challagundla" - ], - "sched": [ - { - "room": "I013", - "days": [ - "T" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "P8": { - "instructors": [ - "Runa Kumari", - "Prakash Palasram R" - ], - "sched": [ - { - "room": "I013", - "days": [ - "F" - ], - "hours": [ - 7, - 8 + 6, + 7 ] } ] }, - "P9": { + "T1": { "instructors": [ - "Ramakant", - "G Jayeshkumar Pintubhai" + "Prasant Kumar P" ], "sched": [ { - "room": "I013", + "room": "I211", "days": [ "M" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P10": { + "T2": { "instructors": [ - "Ramakant", - "G Jayeshkumar Pintubhai" + "Prasant Kumar P" ], "sched": [ { - "room": "I013", + "room": "I211", "days": [ "W" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P11": { + "T3": { "instructors": [ - "Ramakant", - "Naveen Bokka" + "Amit Kumar Panda" ], "sched": [ { - "room": "I013", + "room": "I212", "days": [ - "F" + "M" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P12": { + "T4": { "instructors": [ - "Sandeep Kumar", - "Naveen Bokka" + "Amit Kumar Panda" ], "sched": [ { - "room": "I012", + "room": "I212", "days": [ - "T" + "F" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P13": { + "T5": { "instructors": [ - "Prashant Wali", - "Priyanka B G" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "I012", + "room": "I213", "days": [ - "F" + "M" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P14": { + "T6": { "instructors": [ - "Ramakant", - "Priyanka B G" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "I013", + "room": "I213", "days": [ - "Th" + "W" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P15": { + "T7": { "instructors": [ - "Suvadip Batabyal", - "Sarda Sharma", - "Venkatarao Selamneni" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "I012", + "room": "I213", "days": [ "F" ], "hours": [ - 2, - 3 + 1 ] } ] - }, - "P16": { + } + }, + "compre": { + "date": "12/05", + "session": "AN" + }, + "midsem": { + "date": "12/03", + "time": "3.30pm-5.00pm" + } + }, + "ECE F343": { + "name": "Communication Networks", + "sections": { + "L1": { "instructors": [ - "Soumya J", - "Sarda Sharma" + "S K SAHOO" ], "sched": [ { - "room": "I012", + "room": "F104", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 7, - 8 + 9 ] } ] }, "T1": { "instructors": [ - "Suvadip Batabyal" + "S K Sahoo" ], "sched": [ { - "room": "I111", + "room": "I221", "days": [ - "T" + "M" ], "hours": [ 1 @@ -10574,13 +7438,13 @@ }, "T2": { "instructors": [ - "MB Srinivas" + "S K Sahoo" ], "sched": [ { - "room": "I111", + "room": "I221", "days": [ - "Th" + "W" ], "hours": [ 1 @@ -10590,61 +7454,76 @@ }, "T3": { "instructors": [ - "Amit Ranjan Azad" + "S K Sahoo" ], "sched": [ { - "room": "I112", + "room": "I221", "days": [ - "T" + "F" ], "hours": [ 1 ] } ] - }, - "T4": { + } + }, + "compre": { + "date": "09/05", + "session": "FN" + }, + "midsem": { + "date": "11/03", + "time": "9.00am-10.30am" + } + }, + "ECE F344": { + "name": "Info Theory & Coding", + "sections": { + "L1": { "instructors": [ - "Amit Ranjan Azad" + "RUNA KUMARI" ], "sched": [ { - "room": "I112", + "room": "F104", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 1 + 4 ] } ] }, - "T5": { + "T1": { "instructors": [ - "Prashant Wali" + "Runa Kumari" ], "sched": [ { - "room": "I113", + "room": "I210", "days": [ "T" ], "hours": [ - 1 + 7 ] } ] }, - "T6": { + "T2": { "instructors": [ - "Prashant Wali" + "Runa Kumari" ], "sched": [ { - "room": "I113", + "room": "I211", "days": [ - "Th" + "F" ], "hours": [ 1 @@ -10652,128 +7531,210 @@ } ] }, - "T7": { + "T3": { "instructors": [ - "TO BE ANNOUNCED" + "Runa Kumari" ], "sched": [ { - "room": "I114", + "room": "I211", "days": [ - "T" + "Th" ], "hours": [ - 1 + 7 ] } ] - }, - "T8": { + } + }, + "compre": { + "date": "18/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "3.30pm-5.00pm" + } + }, + "ECE F366": { + "name": "Laboratory Project", + "sections": { + "L1": { "instructors": [ - "TO BE ANNOUNCED" + "SUBHRADEEP PAL" + ], + "sched": [] + } + } + }, + "ECE F367": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "SUBHRADEEP PAL" + ], + "sched": [] + } + } + }, + "ECE F376": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "KARUMBAIAH CHAPPANDA" + ], + "sched": [] + } + } + }, + "ECE F377": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "KARUMBAIAH CHAPPANDA" + ], + "sched": [] + } + } + }, + "ECE F416": { + "name": "Digital Communication", + "sections": { + "L1": { + "instructors": [ + "BALASUBRAMANIAN M" ], "sched": [ { - "room": "I114", + "room": "F107", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 1 + 2 + ] + } + ] + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "ECON F211": { + "name": "Principles of Economics", + "sections": { + "L1": { + "instructors": [ + "ARCHANA SRIVASTAVA" + ], + "sched": [ + { + "room": "G108", + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 6 ] } ] }, - "T9": { + "L2": { "instructors": [ - "Sanjay Vidhyadharan" + "Bheemeshwar Reddy A" ], "sched": [ { - "room": "I222", + "room": "G107", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 6 ] } ] }, - "T10": { + "L3": { "instructors": [ - "Suvadip Batabyal" + "Mini Thomas" ], "sched": [ { - "room": "I222", + "room": "G106", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 1 + 6 ] } ] - } - }, - "compre": { - "date": "02/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "EEE F242": { - "name": "Control Systems", - "sections": { - "L1": { + }, + "L4": { "instructors": [ - "HARISH VIJAY DIXIT" + "Rishi Kumar" ], "sched": [ { - "room": "F105", + "room": "G208", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 5 + 6 ] } ] }, - "L2": { + "L5": { "instructors": [ - "Ankur Bhattacharjee" + "Sudatta Banerjee" ], "sched": [ { - "room": "F103", + "room": "G207", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 5 + 6 ] } ] }, "T1": { "instructors": [ - "Harish Vijay Dixit" + "Archana Srivastava", + "Keerti Mallela" ], "sched": [ { - "room": "I210", + "room": "G108", "days": [ - "T" + "S" ], "hours": [ 1 @@ -10783,13 +7744,13 @@ }, "T2": { "instructors": [ - "Harish Vijay Dixit" + "Bheemeshwar Reddy A" ], "sched": [ { - "room": "I210", + "room": "G107", "days": [ - "Th" + "S" ], "hours": [ 1 @@ -10799,13 +7760,13 @@ }, "T3": { "instructors": [ - "Ankur Bhattacharjee" + "Mini Thomas" ], "sched": [ { - "room": "I211", + "room": "G106", "days": [ - "T" + "S" ], "hours": [ 1 @@ -10815,13 +7776,13 @@ }, "T4": { "instructors": [ - "Ankur Bhattacharjee" + "Rishi Kumar" ], "sched": [ { - "room": "I211", + "room": "G208", "days": [ - "Th" + "S" ], "hours": [ 1 @@ -10831,140 +7792,188 @@ }, "T5": { "instructors": [ - "Balasubramanian M" + "Sudatta Banerjee", + "Bincy George" ], "sched": [ { - "room": "I212", + "room": "G207", "days": [ - "T" + "S" ], "hours": [ 1 ] } ] + } + }, + "compre": { + "date": "13/05", + "session": "AN" + }, + "midsem": { + "date": "14/03", + "time": "1.30pm-3.00pm" + } + }, + "ECON F212": { + "name": "Funda of Fin and Account", + "sections": { + "L1": { + "instructors": [ + "NIRANJAN SWAIN", + "Aaishwarya Narayanan" + ], + "sched": [ + { + "room": "F208", + "days": [ + "T", + "Th", + "S" + ], + "hours": [ + 5 + ] + } + ] }, - "T6": { + "L2": { "instructors": [ - "Balasubramanian M" + "T Nagaraju" ], "sched": [ { - "room": "I212", + "room": "G102", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 1 + 5 ] } ] } }, "compre": { - "date": "08/05", + "date": "23/05", "session": "FN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "16/03", + "time": "3.30pm-5.00pm" } }, - "EEE F243": { - "name": "Signals & Systems", + "ECON F241": { + "name": "Econometric Methods", "sections": { "L1": { "instructors": [ - "BVVSN PRABHAKAR RAO" + "BHEEMESHWAR REDDY A" ], "sched": [ { - "room": "F104", + "room": "J107", "days": [ "M", "W", "F" ], "hours": [ - 4 + 3 ] } ] }, - "L2": { + "T1": { "instructors": [ - "TO BE ANNOUNCED" + "Bheemeshwar Reddy A" ], "sched": [ { - "room": "F103", + "room": "J107", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 4 + 1 ] } ] }, - "T1": { + "T2": { "instructors": [ - "BVVSN Prabhakar Rao" + "Athary Janiso" ], "sched": [ { - "room": "I210", + "room": "J115", "days": [ - "S" + "T" ], "hours": [ 1 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "06/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "9.00am-10.30am" + } + }, + "ECON F242": { + "name": "Microeconomics", + "sections": { + "L1": { "instructors": [ - "BVVSN Prabhakar Rao" + "DUSHYANT KUMAR" ], "sched": [ { - "room": "I210", + "room": "J107", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 9 + 2 ] } ] }, - "T3": { + "T1": { "instructors": [ - "Venkateswaran R" + "Dushyant Kumar" ], "sched": [ { - "room": "I211", + "room": "J107", "days": [ - "S" + "T" ], "hours": [ - 1 + 9 ] } ] }, - "T4": { + "T2": { "instructors": [ - "Venkateswaran R" + "Prakash Kumar Shukla" ], "sched": [ { - "room": "I211", + "room": "J115", "days": [ "T" ], @@ -10973,390 +7982,574 @@ ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "17/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "11.00am-12.30pm" + } + }, + "ECON F243": { + "name": "Macroeconomics", + "sections": { + "L1": { "instructors": [ - "Rajesh Kumar Tripathy" + "SUNNY KUMAR SINGH" ], "sched": [ { - "room": "I212", + "room": "J107", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 1 + 2 ] } ] }, - "T6": { + "T1": { "instructors": [ - "Rajesh Kumar Tripathy" + "Sunny Kumar Singh", + "Salva.K" ], "sched": [ { - "room": "I212", + "room": "J115", "days": [ "Th" ], "hours": [ - 9 + 8 ] } ] } }, "compre": { - "date": "12/05", + "date": "11/05", "session": "AN" }, "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "EEE F244": { - "name": "Microelectronic Circuits", + "ECON F244": { + "name": "Economic of Growth & Dev", "sections": { "L1": { "instructors": [ - "PARIKSHIT PARSHURAM S" + "SUDATTA BANERJEE" ], "sched": [ { - "room": "F105", + "room": "J115", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 5 + 3 ] } ] }, - "L2": { + "T1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "Sudatta Banerjee", + "Soumya Sucharita Panda" ], "sched": [ { - "room": "F104", + "room": "J115", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 5 + 9 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "19/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "9.00am-10.30am" + } + }, + "ECON F266": { + "name": "Study Project", + "sections": { + "L1": { + "instructors": [ + "MINI THOMAS" + ], + "sched": [] + } + } + }, + "ECON F315": { + "name": "Financial Management", + "sections": { + "L1": { "instructors": [ - "Parikshit Parshuram Sahatiy" + "NIVEDITA SINHA", + "Tanaji Pavani Prabha" ], "sched": [ { - "room": "I111", + "room": "F208", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 9 + 2 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" + } + }, + "ECON F341": { + "name": "Public Fin Theo & Policy", + "sections": { + "L1": { "instructors": [ - "Parikshit Parshuram Sahatiy" + "MINI THOMAS" ], "sched": [ { - "room": "I111", + "room": "J115", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 9 + 4 ] } ] }, - "T3": { + "T1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "Mini Thomas", + "Ummuhabeeba Chaliyan" ], "sched": [ { - "room": "I112", + "room": "J115", "days": [ "T" ], "hours": [ - 9 + 7 ] } ] - }, - "T4": { + } + }, + "compre": { + "date": "18/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "3.30pm-5.00pm" + } + }, + "ECON F342": { + "name": "Applied Econometrics", + "sections": { + "L1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "RISHI KUMAR" ], "sched": [ { - "room": "I112", + "room": "J115", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 1 + 9 ] } ] }, - "T5": { + "T1": { "instructors": [ - "Surya Shankar Dan" + "Rishi Kumar" ], "sched": [ { - "room": "I113", + "room": "J115", "days": [ "T" ], "hours": [ - 9 + 8 ] } ] }, - "T6": { + "T2": { "instructors": [ - "Surya Shankar Dan" + "Amrita Pani" ], "sched": [ { - "room": "I113", + "room": "J119", "days": [ - "Th" + "T" ], "hours": [ - 9 + 8 ] } ] } }, "compre": { - "date": "14/05", + "date": "09/05", "session": "FN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" + "date": "11/03", + "time": "9.00am-10.30am" } }, - "EEE F245": { - "name": "Control Systems Laboratory", + "ECON F343": { + "name": "Economic Anal of Pub Pol", "sections": { "L1": { "instructors": [ - "ANKUR BHATTACHARJEE", - "Santhi Durganjali Challa" + "DURGESH C PATHAK" ], "sched": [ { - "room": "K125", + "room": "J107", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 7, - 8 + 4 ] } ] }, - "L2": { + "T1": { "instructors": [ - "Ankur Bhattacharjee", - "Santhi Durganjali Challa" + "Durgesh C Pathak" ], "sched": [ { - "room": "K125", + "room": "J107", "days": [ - "F" + "Th" ], "hours": [ - 7, - 8 + 7 ] } ] - }, - "L3": { + } + }, + "compre": { + "date": "21/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "9.00am-10.30am" + } + }, + "ECON F345": { + "name": "Behavioral Economics", + "sections": { + "L1": { "instructors": [ - "Harish Vijay Dixit", - "Priyalatha. P" + "DUSHYANT KUMAR" ], "sched": [ { - "room": "K125", + "room": "J115", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 2, - 3 + 8 ] } ] - }, - "L4": { + } + }, + "compre": { + "date": "12/05", + "session": "AN" + }, + "midsem": { + "date": "12/03", + "time": "1.30pm-3.00pm" + } + }, + "ECON F354": { + "name": "Derivatives & Risk Mgmt", + "sections": { + "L1": { "instructors": [ - "Harish Vijay Dixit", - "Priyalatha. P" + "SHREYA BISWAS", + "Pratheeksha G" ], "sched": [ { - "room": "K125", + "room": "F208", "days": [ - "W" + "M", + "W", + "F" ], "hours": [ - 2, - 3 + 7 ] } ] } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" } }, - "EEE F246": { - "name": "Electrical & Electronic Circuits Laboratory", + "ECON F355": { + "name": "Buss Anal & Valuation", "sections": { "L1": { "instructors": [ - "Parikshit Parshuram Sahatiy", - "Debapriya Som", - "Pranjali Gajbhiye", - "Rajesh Kumar Tripathy" + "NIRANJAN SWAIN", + "Shreya Lahiri" ], "sched": [ { - "room": "H106/I011", + "room": "F208", "days": [ + "M", "W", "F" ], "hours": [ - 2, 3 ] } ] - }, - "L2": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "ECON F366": { + "name": "Laboratory Project", + "sections": { + "L1": { "instructors": [ - "Sudha Radhika", - "Debapriya Som", - "Pranjali Gajbhiye", - "Venkateswaran R" + "MINI THOMAS" + ], + "sched": [] + } + } + }, + "ECON F367": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "MINI THOMAS" + ], + "sched": [] + } + } + }, + "ECON F376": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "MINI THOMAS" + ], + "sched": [] + } + } + }, + "ECON F377": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "MINI THOMAS" + ], + "sched": [] + } + } + }, + "ECON F411": { + "name": "Project Appraisal", + "sections": { + "L1": { + "instructors": [ + "SUNNY KUMAR SINGH" ], "sched": [ { - "room": "H106", + "room": "F208", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 2, - 3 + 2 ] - }, + } + ] + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "ECON F412": { + "name": "Secur Anal & Portfol Mgt", + "sections": { + "L1": { + "instructors": [ + "SHREYA BISWAS" + ], + "sched": [ { - "room": "I011", + "room": "F208", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 7, - 8 + 3 ] } ] }, - "L3": { + "L2": { "instructors": [ - "Rajesh Kumar Tripathy", - "BVVSN Prabhakar Rao", - "Chaluvadi V Naga Bhaskar", - "T Sachin Ravikant" + "Nivedita Sinha" ], "sched": [ { - "room": "H106/I011", + "room": "F207", "days": [ - "M", - "T" + "T", + "Th", + "S" ], "hours": [ - 7, - 8 + 3 ] } ] - }, - "L4": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "ECON F416": { + "name": "Regional Economics", + "sections": { + "L1": { "instructors": [ - "PRASANT KUMAR P", - "Chaluvadi V Naga Bhaskar", - "Souvik Kundu", - "T Sachin Ravikant" + "VIVEKANANDA MUKHERJE" ], "sched": [ { - "room": "H106/I011", + "room": "J115", "days": [ + "M", "W", "F" ], "hours": [ - 7, - 8 + 2 ] } ] } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" } }, - "EEE F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "MITHUN MONDAL" - ], - "sched": [] - } - } - }, - "EEE F312": { - "name": "Power Systems", + "ECON F434": { + "name": "International Business", "sections": { "L1": { "instructors": [ - "ALIVELU MANGA PARIMI" + "ARCHANA SRIVASTAVA" ], "sched": [ { - "room": "F107", + "room": "J119", "days": [ "T", "Th", @@ -11367,134 +8560,169 @@ ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "ECON F435": { + "name": "Marketing Research", + "sections": { + "L1": { "instructors": [ - "Alivelu Manga Parimi" + "C H YAGANTI" ], "sched": [ { - "room": "I122", + "room": "J115", "days": [ - "W" + "M", + "W", + "F" ], "hours": [ - 1 + 3 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "ECON F491": { + "name": "Special Project", + "sections": { + "L1": { "instructors": [ - "Alivelu Manga Parimi" + "MINI THOMAS" + ], + "sched": [] + } + } + }, + "EEE F216": { + "name": "Electronic Device Simulation Lab", + "sections": { + "L1": { + "instructors": [ + "SAYAN KANUNGO", + "Aditya Tiwari", + "Parikshit Parshuram Sahatiy" ], "sched": [ { - "room": "I122", + "room": "LAB", "days": [ - "F" + "M", + "W" ], "hours": [ - 1 + 6, + 7 ] } ] } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" } }, - "EEE F341": { - "name": "Analog Electronics", + "EEE F241": { + "name": "Microproc & Interfacing", "sections": { "L1": { "instructors": [ - "SOUVIK KUNDU" + "PRASHANT WALI" ], "sched": [ { - "room": "F105", + "room": "F102", "days": [ "M", "W", "F" ], "hours": [ - 2 + 3 ] } ] }, "L2": { "instructors": [ - "Prasant Kumar P" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "F103", + "room": "F105", "days": [ "M", "W", "F" ], "hours": [ - 2 + 3 ] } ] }, "P1": { "instructors": [ - "Souvik Kundu", - "P Joshna" + "Prashant Wali", + "Swapna Challagundla" ], "sched": [ { - "room": "J106", + "room": "LAB", "days": [ - "M" + "T" ], "hours": [ - 6, - 7 + 7, + 8 ] } ] }, "P2": { "instructors": [ - "Souvik Kundu", - "P Joshna" + "Anil Kumar U", + "Gowtham Polumati" ], "sched": [ { - "room": "J106", + "room": "LAB", "days": [ - "Th" + "M" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] }, "P3": { "instructors": [ - "Prasant Kumar P", - "Chowta Mallikharjunarao" + "Harish Vijay Dixit", + "Swapna Challagundla" ], "sched": [ { - "room": "J106", + "room": "LAB", "days": [ - "M" + "S" ], "hours": [ 4, @@ -11505,32 +8733,32 @@ }, "P4": { "instructors": [ - "Chetan Kumar V", - "Chowta Mallikharjunarao" + "S K Sahoo", + "Mrunali Dnyaneshwar Wagh" ], "sched": [ { - "room": "J106", + "room": "LAB", "days": [ - "T" + "Th" ], "hours": [ - 8, - 9 + 6, + 7 ] } ] }, "P5": { "instructors": [ - "S K Chatterjee", - "Mary Vallankanni Manik" + "Soumya J", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "J106", + "room": "LAB", "days": [ - "F" + "T" ], "hours": [ 4, @@ -11541,14 +8769,14 @@ }, "P6": { "instructors": [ - "Ponnalagu R N", - "Mary Vallankanni Manik" + "Soumya J", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "J106", + "room": "LAB", "days": [ - "W" + "Th" ], "hours": [ 4, @@ -11557,185 +8785,178 @@ } ] }, - "T1": { + "P7": { "instructors": [ - "Souvik Kundu" + "Naveen Bokka", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I111", + "room": "LAB", "days": [ - "T" + "F" ], "hours": [ - 7 + 7, + 8 ] } ] }, - "T2": { + "P8": { "instructors": [ - "Prasant Kumar P" + "Sourav Nandi", + "Battina Sindhu" ], "sched": [ { - "room": "I112", + "room": "LAB", "days": [ - "T" + "M" ], "hours": [ - 7 + 7, + 8 ] } ] }, - "T3": { + "P9": { "instructors": [ - "Prasant Kumar P" + "Sourav Nandi", + "Battina Sindhu" ], "sched": [ { - "room": "I112", + "room": "LAB", "days": [ - "Th" + "W" ], "hours": [ - 7 + 7, + 8 ] } ] }, - "T4": { + "P10": { "instructors": [ - "S K Chatterjee" + "Karumbaiah Chappanda Nan", + "Sarda Sharma" ], "sched": [ { - "room": "I111", + "room": "LAB", "days": [ - "M" + "T" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T5": { + "P11": { "instructors": [ - "S K Chatterjee" + "Karumbaiah Chappanda Nan", + "Sarda Sharma" ], "sched": [ { - "room": "I111", + "room": "LAB", "days": [ - "S" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" - } - }, - "EEE F342": { - "name": "Power Electronics", - "sections": { - "L1": { + "Th" + ], + "hours": [ + 4, + 5 + ] + } + ] + }, + "P12": { "instructors": [ - "SUDHA RADHIKA" + "Ramakant", + "Mrunali Dnyaneshwar Wagh" ], "sched": [ { - "room": "F104", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 2 + 6, + 7 ] } ] }, - "P1": { + "P13": { "instructors": [ - "Mithun Mondal", - "E Prasanth Kumar", - "Shrimathi H P" + "Ramakant", + "Gowtham Polumati" ], "sched": [ { - "room": "J114", + "room": "LAB", "days": [ - "M" + "Th" ], "hours": [ - 4, - 5 + 7, + 8 ] } ] }, - "P2": { + "P14": { "instructors": [ - "STP Srinivas", - "E Prasanth Kumar", - "Shrimathi H P" + "Anil Kumar U", + "Jayapiriya U S" ], "sched": [ { - "room": "J114", + "room": "LAB", "days": [ - "T" + "W" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] }, - "P3": { + "P15": { "instructors": [ - "STP Srinivas", - "Amar Kumar Verma", - "Manoj Samal" + "TO BE ANNOUNCED", + "Kurakula Anudeep" ], "sched": [ { - "room": "J114", + "room": "LAB", "days": [ - "W" + "F" ], "hours": [ - 4, - 5 + 7, + 8 ] } ] }, - "P4": { + "P16": { "instructors": [ - "STP Srinivas", - "Amar Kumar Verma", - "Manoj Samal" + "Naveen Bokka", + "Kurakula Anudeep" ], "sched": [ { - "room": "J114", + "room": "LAB", "days": [ - "F" + "S" ], "hours": [ 4, @@ -11746,13 +8967,13 @@ }, "T1": { "instructors": [ - "Sudha Radhika" + "Prashant Wali" ], "sched": [ { - "room": "I114", + "room": "I111", "days": [ - "F" + "T" ], "hours": [ 1 @@ -11762,13 +8983,13 @@ }, "T2": { "instructors": [ - "Sudha Radhika" + "Prashant Wali" ], "sched": [ { - "room": "I114", + "room": "I111", "days": [ - "W" + "Th" ], "hours": [ 1 @@ -11778,497 +8999,335 @@ }, "T3": { "instructors": [ - "Sudha Radhika" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "I114", + "room": "I112", "days": [ "T" ], "hours": [ - 7 + 1 ] } ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "EEE F348": { - "name": "Fpga Based System Design Lab", - "sections": { - "L1": { + }, + "T4": { "instructors": [ - "SAYAN KANUNGO", - "G Sahith" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "I124", + "room": "I112", "days": [ - "M", - "F" + "Th" ], "hours": [ - 4, - 5 + 1 ] } ] }, - "L2": { + "T5": { "instructors": [ - "Sayan Kanungo", - "Simhadri Hariprasad" + "Runa Kumari" ], "sched": [ { - "room": "I124", + "room": "I114", "days": [ - "T", - "Th" + "T" ], "hours": [ - 9, - 10 + 1 ] } ] - } - } - }, - "EEE F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "PARIKSHIT PARSHURAM S" - ], - "sched": [] - } - } - }, - "EEE F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "PARIKSHIT PARSHURAM S" - ], - "sched": [] - } - } - }, - "EEE F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "KARUMBAIAH CHAPPANDA" - ], - "sched": [] - } - } - }, - "EEE F377": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "KARUMBAIAH CHAPPANDA" - ], - "sched": [] - } - } - }, - "EEE F411": { - "name": "Internet of Things", - "sections": { - "L1": { + }, + "T6": { "instructors": [ - "SANDEEP KUMAR" + "Chetan Kumar V" ], "sched": [ { - "room": "F101", + "room": "I113", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 9 + 1 ] } ] }, - "P1": { + "T7": { "instructors": [ - "Sandeep Kumar", - "Madhusudan B Kulkarni" + "Chetan Kumar V" ], "sched": [ { - "room": "J105", + "room": "I113", "days": [ - "M" + "Th" ], "hours": [ - 4, - 5 + 1 ] } ] }, - "P2": { + "T8": { "instructors": [ - "Sandeep Kumar", - "Pavankumar Reddy B" + "Prashant Wali" ], "sched": [ { - "room": "J105", + "room": "I210", "days": [ - "F" + "M" ], "hours": [ - 6, - 7 + 1 ] } ] }, - "P3": { + "T9": { "instructors": [ - "Sandeep Kumar", - "Madhusudan B Kulkarni", - "Pavankumar Reddy B" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "J105", + "room": "I114", "days": [ "W" ], "hours": [ - 4, - 5 + 1 ] } ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "EEE F435": { - "name": "Digital Image Processing", - "sections": { - "L1": { + }, + "T10": { "instructors": [ - "VENKATESWARAN R" + "Subhradeep Pal" ], "sched": [ { - "room": "F107", + "room": "I122", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 4 + 1 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "EEE F478": { - "name": "Power Systems Lab", - "sections": { - "L1": { + }, + "T11": { "instructors": [ - "ALIVELU MANGA PARIMI", - "P Shambhu Prasad" + "Subhradeep Pal" ], "sched": [ { - "room": "E004", - "days": [ - "M" - ], - "hours": [ - 6, - 7 - ] - }, - { - "room": "K126", + "room": "I122", "days": [ - "W" + "Th" ], "hours": [ - 6, - 7 + 1 ] } ] } + }, + "compre": { + "date": "06/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "9.00am-10.30am" } }, - "EEE G510": { - "name": "Rf Microelectronics", + "EEE F242": { + "name": "Control Systems", "sections": { "L1": { "instructors": [ - "SOURAV NANDI" + "PRATYUSH CHAKRABORT", + "Ankur Bhattacharjee" ], "sched": [ { - "room": "F101", + "room": "F102", "days": [ "M", "W", "F" ], "hours": [ - 4 + 2 ] } ] }, - "P1": { + "L2": { "instructors": [ - "Sourav Nandi", - "Battina Sindhu" + "Alivelu Manga Parimi", + "Joyjit Mukherjee" ], "sched": [ { - "room": "LAB", + "room": "F105", "days": [ - "W" + "M", + "W", + "F" ], "hours": [ - 9, - 10 + 2 ] } ] }, - "P2": { + "T1": { "instructors": [ - "Sourav Nandi", - "Battina Sindhu" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "LAB", + "room": "I210", "days": [ - "F" + "T" ], "hours": [ - 7, - 8 + 9 ] } ] - } - }, - "compre": { - "date": "02/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "3.30 - 5.00 PM" - } - }, - "EEE G547": { - "name": "Device Drivers", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "TO BE ANNOUNCED" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "F101", + "room": "I210", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 5 + 9 ] } ] }, - "P1": { + "T3": { "instructors": [ - "TO BE ANNOUNCED" + "Alivelu Manga Parimi" ], "sched": [ { - "room": "J105", + "room": "I211", "days": [ - "T", - "Th" + "T" ], "hours": [ - 7, - 8 + 9 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "AN" - }, - "midsem": { - "date": "6/3", - "time": "3.30 - 5.00 PM" - } - }, - "EEE G592": { - "name": "Mobile & Personal Communication", - "sections": { - "L1": { + }, + "T4": { "instructors": [ - "AMIT RANJAN AZAD" + "Manish Laxminarayan Bhaiy" ], "sched": [ { - "room": "I112", + "room": "I211", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 4 + 9 ] } ] }, - "P1": { + "T5": { "instructors": [ - "Amit Ranjan Azad", - "R Venkata Sravya" + "Pratyush Chakraborty" ], "sched": [ { - "room": "I115", + "room": "I212", "days": [ - "T", - "F" + "W" ], "hours": [ - 7, - 8 + 5 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "EEE G622": { - "name": "Advanced Digital Communication", - "sections": { - "L1": { + }, + "T6": { "instructors": [ - "PRASHANT WALI" + "Pratyush Chakraborty" ], "sched": [ { - "room": "I112", + "room": "I212", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 5 + 9 ] } ] }, - "P1": { + "T7": { "instructors": [ - "Prashant Wali", - "V Sarath Sankar" + "Joyjit Mukherjee" ], "sched": [ { - "room": "H106", + "room": "I212", "days": [ - "M", "W" ], "hours": [ - 7, - 8 + 5 ] } ] } }, "compre": { - "date": "08/05", - "session": "FN" + "date": "11/05", + "session": "AN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "EEE G626": { - "name": "Hardware Software Co-dsn", + "EEE F243": { + "name": "Signals & Systems", "sections": { "L1": { "instructors": [ - "SOUMYA J" + "RAMAKANT" ], "sched": [ { - "room": "I114", + "room": "F105", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 3 @@ -12276,410 +9335,274 @@ } ] }, - "P1": { + "L2": { "instructors": [ - "Soumya J", - "Samala Jagadheesh" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "J105", + "room": "F104", "days": [ + "T", + "Th", "S" ], "hours": [ - 2, 3 ] } ] - } - }, - "compre": { - "date": "01/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "9.00 - 10.30AM" - } - }, - "FIN F311": { - "name": "Derivatives & Risk Mgmt", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "T NAGARAJU", - "Shreya Biswas" + "Ramakant" ], "sched": [ { - "room": "F208", + "room": "I213", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 7 + 1 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "FIN F313": { - "name": "Secur Anal & Portfol Mgt", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "NEMIRAJA JADIYAPPA" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "J120", + "room": "I210", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 9 + 1 ] } ] }, - "L2": { + "T3": { "instructors": [ - "Shreya Biswas" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "F107", + "room": "I210", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 5 + 1 ] } ] - } - }, - "compre": { - "date": "07/05", - "session": "FN" - }, - "midsem": { - "date": "8/3", - "time": "11.00 -12.30 PM" - } - }, - "FIN F315": { - "name": "Financial Management", - "sections": { - "L1": { + }, + "T4": { "instructors": [ - "NIVEDITA SINHA" + "Venkateswaran R" ], "sched": [ { - "room": "F207", + "room": "I211", + "days": [ + "T" + ], + "hours": [ + 1 + ] + } + ] + }, + "T5": { + "instructors": [ + "Venkateswaran R" + ], + "sched": [ + { + "room": "I211", "days": [ - "T", "Th" ], "hours": [ - 10 + 1 ] - }, + } + ] + }, + "T6": { + "instructors": [ + "Amit Ranjan Azad" + ], + "sched": [ { - "room": "F207", + "room": "I212", "days": [ - "S" + "T" ], "hours": [ - 6 + 9 ] } ] }, - "L2": { + "T7": { "instructors": [ - "Niranjan Swain" + "Amit Ranjan Azad" ], "sched": [ { - "room": "F208", + "room": "I212", "days": [ - "T", "Th" ], "hours": [ - 10 - ] - }, - { - "room": "F208", - "days": [ - "S" - ], - "hours": [ - 6 + 1 ] } ] } }, "compre": { - "date": "03/05", + "date": "19/05", "session": "FN" }, "midsem": { - "date": "1/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "9.00am-10.30am" } }, - "FIN F414": { - "name": "Financial Risk Analytics and Management", + "EEE F244": { + "name": "Microelectronic Circuits", "sections": { "L1": { "instructors": [ - "T NAGARAJU" + "SYED ERSHAD AHMED" ], "sched": [ { - "room": "J217", + "room": "F105", "days": [ "T", "Th", "S" ], "hours": [ - 5 + 2 ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "GS F211": { - "name": "Modern Political Concepts", - "sections": { - "L1": { + }, + "L2": { "instructors": [ - "LAVANYA SURESH" + "Karumbaiah Chappanda Nan" ], "sched": [ { - "room": "J107", + "room": "F104", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 7 + 2 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "GS F213": { - "name": "Development Theories", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "SUCHISMITA SATPATHY" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "J107", + "room": "J121", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 6 + 9 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "AN" - }, - "midsem": { - "date": "6/3", - "time": "3.30 - 5.00 PM" - } - }, - "GS F223": { - "name": "Intro to Mass Comm", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "SHILPAA ANAND" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "J119", + "room": "J121", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 8 + 9 ] } ] - } - }, - "compre": { - "date": "14/05", - "session": "AN" - }, - "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" - } - }, - "GS F234": { - "name": "Development Economics", - "sections": { - "L1": { + }, + "T3": { "instructors": [ - "MD ZAKARIA SIDDIQUI" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "J214", + "room": "J121", "days": [ - "M", - "W", "F" ], "hours": [ - 9 + 1 ] } ] - } - }, - "compre": { - "date": "05/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "3.30 - 5.00 PM" - } - }, - "GS F241": { - "name": "Creative Writing", - "sections": { - "L1": { + }, + "T4": { "instructors": [ - "ANHITI PATNAIK" + "Karumbaiah Chappanda Nan" ], "sched": [ { - "room": "J121", + "room": "J206", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 3 + 9 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "GS F242": { - "name": "Cultural Studies", - "sections": { - "L1": { + }, + "T5": { "instructors": [ - "ANHITI PATNAIK" + "Karumbaiah Chappanda Nan" ], "sched": [ { - "room": "J121", + "room": "J206", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 3 + 9 ] } ] - } - }, - "compre": { - "date": "01/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" - } - }, - "GS F245": { - "name": "Effective Public Speak", - "sections": { - "L1": { + }, + "T6": { "instructors": [ - "MG PRASUNA" + "Surya Shankar Dan" ], "sched": [ { - "room": "J217", + "room": "J214", "days": [ - "M", - "W" + "T" ], "hours": [ 9 @@ -12687,949 +9610,970 @@ } ] }, - "P1": { + "T7": { "instructors": [ - "MG Prasuna" + "Surya Shankar Dan" ], "sched": [ { - "room": "J217", + "room": "J214", "days": [ - "F" + "Th" ], "hours": [ - 9, - 10 + 9 ] } ] } }, "compre": { - "date": "05/05", + "date": "17/05", "session": "AN" }, "midsem": { - "date": "3/3", - "time": "3.30 - 5.00 PM" + "date": "15/03", + "time": "11.00am-12.30pm" } }, - "GS F332": { - "name": "Contemporary India", + "EEE F245": { + "name": "Control Systems Laboratory", "sections": { "L1": { "instructors": [ - "MD ZAKARIA SIDDIQUI" + "SANDEEP KUMAR", + "Shrimathi H P" ], "sched": [ { - "room": "J107", + "room": "LAB", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 2 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" - } - }, - "GS F333": { - "name": "Public Administration", - "sections": { - "L1": { + }, + "L2": { "instructors": [ - "LAVANYA SURESH" + "Sandeep Kumar", + "Priyalatha. P", + "Shrimathi H P" ], "sched": [ { - "room": "J218", + "room": "LAB", "days": [ - "T", - "Th", "S" ], "hours": [ - 3 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "HSS F222": { - "name": "Linguistics", - "sections": { - "L1": { + }, + "L3": { "instructors": [ - "PRANESH BHARGAVA" + "STP Srinivas", + "Priyalatha. P" ], "sched": [ { - "room": "J120", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "M" ], "hours": [ - 3 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "HSS F235": { - "name": "Introductory Philosophy", - "sections": { - "L1": { + }, + "L4": { "instructors": [ - "JAYESH A K" + "Alivelu Manga Parmi" ], "sched": [ { - "room": "J218", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "W" ], "hours": [ - 2 + 7, + 8 ] } ] } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" } }, - "HSS F242": { - "name": "Introduction to Phonology", + "EEE F246": { + "name": "Electrical & Electronic Circuits Laboratory", "sections": { "L1": { "instructors": [ - "PRANESH BHARGAVA" + "BVVSN PRABHAKAR RAO", + "Jisy N K", + "Syed Ershad Ahmed", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "J218", + "room": "LAB", "days": [ - "M", "W", "F" ], "hours": [ - 9 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "05/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "3.30 - 5.00 PM" - } - }, - "HSS F243": { - "name": "Introduction to Critical Pedagogy", - "sections": { - "L1": { + }, + "L2": { "instructors": [ - "SANTOSH MAHAPATRA" + "Venkateswaran R", + "Adepu Vivek", + "Himanshi Awasthi", + "Joyjit Mukherjee" ], "sched": [ { - "room": "J214", + "room": "LAB", "days": [ - "M", - "W", - "F" + "T", + "Th" ], "hours": [ - 2 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" - } - }, - "HSS F246": { - "name": "Philosophy of Nagarjuna", - "sections": { - "L1": { + }, + "L3": { "instructors": [ - "JAYESH A K" + "Rabindra Mohanty", + "Naresh Bahadursha", + "Pn Sidhartha", + "Samit Kumar Ghosh" ], "sched": [ { - "room": "J217", + "room": "LAB", "days": [ - "M", - "W", - "F" + "T", + "Th" ], "hours": [ - 2 + 7, + 8 ] } ] } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" } }, - "HSS F266": { + "EEE F266": { "name": "Study Project", "sections": { "L1": { "instructors": [ - "ASWATHY RAVEENDRAN" + "STP SRINIVAS" ], "sched": [] } } }, - "HSS F328": { - "name": "Human Resources Dev", + "EEE F312": { + "name": "Power Systems", "sections": { "L1": { "instructors": [ - "SWATI ALOK" + "RABINDRA MOHANTY", + "N Praneeth" ], "sched": [ { - "room": "J115", + "room": "F106", "days": [ "T", "Th", "S" ], "hours": [ - 3 + 4 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "HSS F334": { - "name": "Srimad Bhagavad Gita", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "ARUNA LOLLA" + "Rabindra Mohanty" ], "sched": [ { - "room": "J214", + "room": "J107", "days": [ - "T", - "Th", - "S" + "M" ], "hours": [ - 3 + 1 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "HSS F335": { - "name": "Literary Criticism", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "SHILPAA ANAND" + "Rabindra Mohanty" ], "sched": [ { - "room": "J119", + "room": "J107", "days": [ - "T", - "Th", - "S" + "W" ], "hours": [ - 2 + 1 ] } ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "HSS F340": { - "name": "Post Colonial Literature", - "sections": { - "L1": { + }, + "T3": { "instructors": [ - "MAYA VINAY" + "Mithun Mondal" ], "sched": [ { - "room": "J217", + "room": "J107", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 3 + 1 ] } ] } }, "compre": { - "date": "06/05", + "date": "18/05", "session": "AN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "3.30pm-5.00pm" } }, - "HSS F361": { - "name": "Urban Policy and Governance", + "EEE F341": { + "name": "Analog Electronics", "sections": { "L1": { "instructors": [ - "SUCHISMITA SATPATHY" + "PRASANT KUMAR P" ], "sched": [ { - "room": "J107", + "room": "J214", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 3 + 8 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "HSS F363": { - "name": "Disaster and Development", - "sections": { - "L1": { + }, + "L2": { + "instructors": [ + "Amit Kumar Panda" + ], + "sched": [ + { + "room": "F104", + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 8 + ] + } + ] + }, + "P1": { + "instructors": [ + "Prasant Kumar P", + "TO BE ANNOUNCED" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "F" + ], + "hours": [ + 4, + 5 + ] + } + ] + }, + "P2": { + "instructors": [ + "Prasant Kumar P", + "TO BE ANNOUNCED" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "M" + ], + "hours": [ + 4, + 5 + ] + } + ] + }, + "P3": { "instructors": [ - "BISWANATH DASH" + "Rajesh Kumar Tripathy", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "J206", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "W" ], "hours": [ - 3 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "INSTR F241": { - "name": "Microproc & Interfacing", - "sections": { - "L1": { + }, + "P4": { "instructors": [ - "MB SRINIVAS" + "Chaluvadi V Naga Bhaskar", + "Renuka.H" ], "sched": [ { - "room": "F105", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 4 + 8, + 9 ] } ] }, - "L2": { + "P5": { "instructors": [ - "MB Srinivas" + "Joyjit Mukherjee", + "Chaluvadi V Naga Bhaskar" ], "sched": [ { - "room": "F105", + "room": "LAB", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 4 + 8, + 9 ] } ] }, - "P1": { + "P6": { "instructors": [ - "Suvadip Batabyal", - "Renuka.H" + "Joyjit Mukherjee" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ "M" ], "hours": [ - 2, - 3 + 6, + 7 ] } ] }, - "P2": { + "T1": { "instructors": [ - "Karumbaiah Chappanda Nan", - "Renuka.H" + "Prasant Kumar P" ], "sched": [ { - "room": "I012", + "room": "I211", "days": [ - "W" + "M" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P3": { + "T2": { "instructors": [ - "Karumbaiah Chappanda Nan", - "P Michael Preetam Raj" + "Prasant Kumar P" ], "sched": [ { - "room": "I012", + "room": "I211", "days": [ - "M" + "W" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P4": { + "T3": { "instructors": [ - "Soumya J", - "P Michael Preetam Raj" + "Amit Kumar Panda" ], "sched": [ { - "room": "I012", + "room": "I212", "days": [ - "W" + "M" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P5": { + "T4": { "instructors": [ - "S K Sahoo", - "Puneeth S B" + "Amit Kumar Panda" ], "sched": [ { - "room": "I013", + "room": "I212", "days": [ - "W" + "F" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P6": { + "T5": { "instructors": [ - "S K Sahoo", - "Puneeth S B", - "Swapna Challagundla" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "I013", + "room": "I213", "days": [ "M" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P7": { + "T6": { "instructors": [ - "Runa Kumari", - "Prakash Palasram R", - "Swapna Challagundla" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "I013", + "room": "I213", "days": [ - "T" + "W" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P8": { + "T7": { "instructors": [ - "Runa Kumari", - "Prakash Palasram R" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "I013", + "room": "I213", "days": [ "F" ], "hours": [ - 7, - 8 + 1 ] } ] - }, - "P9": { + } + }, + "compre": { + "date": "12/05", + "session": "AN" + }, + "midsem": { + "date": "12/03", + "time": "3.30pm-5.00pm" + } + }, + "EEE F342": { + "name": "Power Electronics", + "sections": { + "L1": { "instructors": [ - "Ramakant", - "G Jayeshkumar Pintubhai" + "STP SRINIVAS" ], "sched": [ { - "room": "I013", + "room": "F102", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 2, - 3 + 5 ] } ] }, - "P10": { + "P1": { "instructors": [ - "Ramakant", - "G Jayeshkumar Pintubhai" + "Sudha Radhika", + "Santhi Durganjali Challa" ], "sched": [ { - "room": "I013", + "room": "LAB", "days": [ - "W" + "M" ], "hours": [ - 2, - 3 + 4, + 5 ] } ] }, - "P11": { + "P2": { "instructors": [ - "Ramakant", - "Naveen Bokka" + "Sudha Radhika", + "Santhi Durganjali Challa" ], "sched": [ { - "room": "I013", + "room": "LAB", "days": [ - "F" + "W" ], "hours": [ - 2, - 3 + 4, + 5 ] } ] }, - "P12": { + "P3": { "instructors": [ - "Sandeep Kumar", - "Naveen Bokka" + "Sudha Radhika", + "Nawin Ra" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "T" + "F" ], "hours": [ - 7, - 8 + 4, + 5 ] } ] }, - "P13": { + "P4": { "instructors": [ - "Prashant Wali", - "Priyanka B G" + "STP Srinivas", + "Nawin Ra" ], "sched": [ { - "room": "I012", + "room": "LAB", "days": [ - "F" + "T" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] }, - "P14": { + "T1": { "instructors": [ - "Ramakant", - "Priyanka B G" + "STP Srinivas" ], "sched": [ { - "room": "I013", + "room": "I210", "days": [ - "Th" + "W" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "P15": { + "T2": { "instructors": [ - "Suvadip Batabyal", - "Sarda Sharma", - "Venkatarao Selamneni" + "STP Srinivas" ], "sched": [ { - "room": "I012", + "room": "I210", "days": [ "F" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P16": { + "T3": { "instructors": [ - "Soumya J", - "Sarda Sharma" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "I012", + "room": "I212", "days": [ - "Th" + "T" ], "hours": [ - 7, - 8 + 7 ] } ] }, - "T1": { + "T4": { "instructors": [ - "Suvadip Batabyal" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "I111", + "room": "I212", "days": [ - "T" + "Th" ], "hours": [ - 1 + 7 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "EEE F348": { + "name": "Fpga Based System Design Lab", + "sections": { + "L1": { "instructors": [ - "MB Srinivas" + "AMIT KUMAR PANDA", + "Aditi Sood" ], "sched": [ { - "room": "I111", + "room": "LAB", "days": [ - "Th" + "W", + "F" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T3": { + "L2": { "instructors": [ - "Amit Ranjan Azad" + "Samala Jagadheesh", + "Venkatarao Selamneni" ], "sched": [ { - "room": "I112", + "room": "LAB", "days": [ - "T" + "M", + "W" ], "hours": [ - 1 + 6, + 7 ] } ] - }, - "T4": { + } + } + }, + "EEE F366": { + "name": "Laboratory Project", + "sections": { + "L1": { "instructors": [ - "Amit Ranjan Azad" + "SUBHRADEEP PAL" + ], + "sched": [] + } + } + }, + "EEE F367": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "SUBHRADEEP PAL" + ], + "sched": [] + } + } + }, + "EEE F376": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "KARUMBAIAH CHAPPANDA" + ], + "sched": [] + } + } + }, + "EEE F377": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "KARUMBAIAH CHAPPANDA" + ], + "sched": [] + } + } + }, + "EEE F411": { + "name": "Internet of Things", + "sections": { + "L1": { + "instructors": [ + "SANDEEP KUMAR" ], "sched": [ { - "room": "I112", + "room": "F104", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 1 + 2 ] } ] }, - "T5": { + "P1": { "instructors": [ - "Prashant Wali" + "Sandeep Kumar", + "Sree Rama Amrutha Lahari" ], "sched": [ { - "room": "I113", + "room": "LAB", "days": [ - "T" + "M" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T6": { + "P2": { "instructors": [ - "Prashant Wali" + "Sandeep Kumar", + "Ritesh Kumar Singh" ], "sched": [ { - "room": "I113", + "room": "LAB", "days": [ - "Th" + "F" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T7": { + "P3": { "instructors": [ - "TO BE ANNOUNCED" + "Ponnalagu R N", + "Ritesh Kumar Singh" ], "sched": [ { - "room": "I114", + "room": "LAB", "days": [ - "T" + "Th" ], "hours": [ - 1 + 8, + 9 ] } ] - }, - "T8": { + } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" + } + }, + "EEE F416": { + "name": "Digital Communication", + "sections": { + "L1": { "instructors": [ - "TO BE ANNOUNCED" + "BALASUBRAMANIAN M" ], "sched": [ { - "room": "I114", + "room": "F107", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 1 + 2 ] } ] - }, - "T9": { + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "EEE F432": { + "name": "Medical Instrumentation", + "sections": { + "L1": { "instructors": [ - "Sanjay Vidhyadharan" + "VENKATESWARAN R" ], "sched": [ { - "room": "I222", + "room": "F107", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 3 ] } ] - }, - "T10": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "EEE F435": { + "name": "Digital Image Processing", + "sections": { + "L1": { "instructors": [ - "Suvadip Batabyal" + "SUDHA RADHIKA" ], "sched": [ { - "room": "I222", + "room": "F108", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 1 + 2 ] } ] } }, "compre": { - "date": "02/05", + "date": "17/05", "session": "FN" }, "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" + "date": "15/03", + "time": "9.00am-10.30am" } }, - "INSTR F242": { - "name": "Control Systems", + "EEE F474": { + "name": "Antenna Theory and Design", "sections": { "L1": { "instructors": [ @@ -13637,415 +10581,679 @@ ], "sched": [ { - "room": "F105", + "room": "I113", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 5 + 7 ] } ] }, - "L2": { + "P1": { "instructors": [ - "Ankur Bhattacharjee" + "Harish Vijay Dixit", + "Neha Parmar" ], "sched": [ { - "room": "F103", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 5 + 10, + 11 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" + } + }, + "EEE F477": { + "name": "Modeling of Field-effect Nano Devices", + "sections": { + "L1": { "instructors": [ - "Harish Vijay Dixit" + "SAYAN KANUNGO" ], "sched": [ { - "room": "I210", + "room": "F108", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 10 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "07/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "03.30pm-05.00pm" + } + }, + "EEE F478": { + "name": "Power Systems Lab", + "sections": { + "L1": { "instructors": [ - "Harish Vijay Dixit" + "ALIVELU MANGA PARIMI", + "P Shambhu Prasad", + "Renuka Loka" ], "sched": [ { - "room": "I210", + "room": "LAB", + "days": [ + "M" + ], + "hours": [ + 4, + 5 + ] + }, + { + "room": "LAB", "days": [ - "Th" + "F" ], "hours": [ - 1 + 6, + 7 ] } ] - }, - "T3": { + } + } + }, + "EEE G592": { + "name": "Mobile & Personal Communication", + "sections": { + "L1": { "instructors": [ - "Ankur Bhattacharjee" + "AMIT RANJAN AZAD" ], "sched": [ { - "room": "I211", + "room": "I113", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 3 ] } ] }, - "T4": { + "P1": { "instructors": [ - "Ankur Bhattacharjee" + "Amit Ranjan Azad", + "T Sachin Ravikant" ], "sched": [ { - "room": "I211", + "room": "LAB", "days": [ - "Th" + "M", + "W" ], "hours": [ - 1 + 8, + 9 ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "07/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "1.30pm-3.00pm" + } + }, + "EEE G622": { + "name": "Advanced Digital Communication", + "sections": { + "L1": { "instructors": [ - "Balasubramanian M" + "SUBHRADEEP PAL" ], "sched": [ { - "room": "I212", + "room": "I113", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 1 + 2 ] } ] }, - "T6": { + "P1": { "instructors": [ - "Balasubramanian M" + "Subhradeep Pal", + "V Sarath Sankar" ], "sched": [ { - "room": "I212", + "room": "LAB", "days": [ - "Th" + "Th", + "F" ], "hours": [ - 1 + 8, + 9 ] } ] } }, "compre": { - "date": "08/05", + "date": "12/05", "session": "FN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "1.30pm-3.00pm" } }, - "INSTR F243": { - "name": "Signals & Systems", + "FIN F311": { + "name": "Derivatives & Risk Mgmt", "sections": { "L1": { "instructors": [ - "BVVSN PRABHAKAR RAO" + "SHREYA BISWAS", + "Pratheeksha G" ], "sched": [ { - "room": "F104", + "room": "F208", "days": [ "M", "W", "F" ], "hours": [ - 4 + 7 ] } ] - }, - "L2": { + } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" + } + }, + "FIN F313": { + "name": "Secur Anal & Portfol Mgt", + "sections": { + "L1": { "instructors": [ - "TO BE ANNOUNCED" + "SHREYA BISWAS" ], "sched": [ { - "room": "F103", + "room": "F208", "days": [ "T", "Th", "S" ], "hours": [ - 4 + 3 ] } ] }, - "T1": { + "L2": { "instructors": [ - "BVVSN Prabhakar Rao" + "Nivedita Sinha" ], "sched": [ { - "room": "I210", + "room": "F207", "days": [ + "T", + "Th", "S" ], "hours": [ - 1 + 3 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "FIN F315": { + "name": "Financial Management", + "sections": { + "L1": { "instructors": [ - "BVVSN Prabhakar Rao" + "NIVEDITA SINHA", + "Tanaji Pavani Prabha" ], "sched": [ { - "room": "I210", + "room": "F208", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 9 + 2 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" + } + }, + "FIN F414": { + "name": "Financial Risk Analytics and Management", + "sections": { + "L1": { "instructors": [ - "Venkateswaran R" + "T NAGARAJU" ], "sched": [ { - "room": "I211", + "room": "F208", "days": [ "S" ], "hours": [ - 1 + 7, + 8, + 9 ] } ] - }, - "T4": { + } + }, + "compre": { + "date": "20/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "1.30pm-3.00pm" + } + }, + "GS F211": { + "name": "Modern Political Concepts", + "sections": { + "L1": { "instructors": [ - "Venkateswaran R" + "LAVANYA SURESH" ], "sched": [ { - "room": "I211", + "room": "J206", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 9 + 5 ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "GS F223": { + "name": "Intro to Mass Comm", + "sections": { + "L1": { "instructors": [ - "Rajesh Kumar Tripathy" + "SPANDAN BHATTACHARYA" ], "sched": [ { - "room": "I212", + "room": "J206", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 1 + 4 ] } ] - }, - "T6": { + } + }, + "compre": { + "date": "21/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "9.00am-10.30am" + } + }, + "GS F233": { + "name": "Public Policy", + "sections": { + "L1": { "instructors": [ - "Rajesh Kumar Tripathy" + "BISWANATH DASH" ], "sched": [ { - "room": "I212", + "room": "F101", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 9 + 3 ] } ] } }, "compre": { - "date": "12/05", - "session": "AN" + "date": "14/05", + "session": "FN" }, "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" + "date": "TBA", + "time": "TBA" } }, - "INSTR F244": { - "name": "Microelectronic Circuits", + "GS F241": { + "name": "Creative Writing", "sections": { "L1": { "instructors": [ - "PARIKSHIT PARSHURAM S" + "ANHITI PATNAIK" ], "sched": [ { - "room": "F105", + "room": "J217", "days": [ "M", "W", "F" ], "hours": [ - 5 + 4 ] } ] - }, - "L2": { + } + }, + "compre": { + "date": "21/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "9.00am-10.30am" + } + }, + "GS F245": { + "name": "Effective Public Speak", + "sections": { + "L1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "SANTOSH MAHAPATRA" ], "sched": [ { - "room": "F104", + "room": "J206", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 5 + 4 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "18/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "3.30pm-5.00pm" + } + }, + "GS F312": { + "name": "Applied Philosophy", + "sections": { + "L1": { "instructors": [ - "Parikshit Parshuram Sahatiy" + "JAYESH A K" ], "sched": [ { - "room": "I111", + "room": "J214", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 9 + 3 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "GS F333": { + "name": "Public Administration", + "sections": { + "L1": { "instructors": [ - "Parikshit Parshuram Sahatiy" + "LAVANYA SURESH" ], "sched": [ { - "room": "I111", + "room": "J214", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 9 + 7 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" + } + }, + "HSS F222": { + "name": "Linguistics", + "sections": { + "L1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "PRANESH BHARGAVA" ], "sched": [ { - "room": "I112", + "room": "J218", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ 9 ] } ] - }, - "T4": { + } + }, + "compre": { + "date": "09/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "11.00am-12.30pm" + } + }, + "HSS F237": { + "name": "Contemporary Indian English Fiction", + "sections": { + "L1": { "instructors": [ - "Karumbaiah Chappanda Nan" + "MAYA VINAY" ], "sched": [ { - "room": "I112", + "room": "J217", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 1 + 7 ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" + } + }, + "HSS F243": { + "name": "Introduction to Critical Pedagogy", + "sections": { + "L1": { "instructors": [ - "Surya Shankar Dan" + "SANTOSH MAHAPATRA" ], "sched": [ { - "room": "I113", + "room": "J206", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 9 + 1 ] } ] - }, - "T6": { + } + }, + "compre": { + "date": "20/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "1.30pm-3.00pm" + } + }, + "HSS F246": { + "name": "Philosophy of Nagarjuna", + "sections": { + "L1": { "instructors": [ - "Surya Shankar Dan" + "JAYESH A K" ], "sched": [ { - "room": "I113", + "room": "J214", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ 9 @@ -14055,332 +11263,476 @@ } }, "compre": { - "date": "14/05", - "session": "FN" + "date": "09/05", + "session": "AN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" + "date": "11/03", + "time": "11.00am-12.30pm" } }, - "INSTR F266": { + "HSS F266": { "name": "Study Project", "sections": { "L1": { "instructors": [ - "MITHUN MONDAL" + "PRANESH BHARGAVA" ], "sched": [] } } }, - "INSTR F341": { - "name": "Analog Electronics", + "HSS F316": { + "name": "Pop Liter & Cult of S Asia", "sections": { "L1": { "instructors": [ - "SOUVIK KUNDU" - ], - "sched": [ - { - "room": "F105", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 2 - ] - } - ] - }, - "L2": { - "instructors": [ - "Prasant Kumar P" + "MAYA VINAY" ], "sched": [ { - "room": "F103", + "room": "J217", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 2 + 5 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "HSS F334": { + "name": "Srimad Bhagavad Gita", + "sections": { + "L1": { "instructors": [ - "Souvik Kundu", - "P Joshna" + "ARUNA LOLLA" ], "sched": [ { - "room": "J106", + "room": "J214", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 6, - 7 + 4 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "18/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "3.30pm-5.00pm" + } + }, + "HSS F337": { + "name": "English Literary Forms and Movements", + "sections": { + "L1": { "instructors": [ - "Souvik Kundu", - "P Joshna" + "MG PRASUNA" ], "sched": [ { - "room": "J106", + "room": "J218", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 8, - 9 + 5 ] } ] - }, - "P3": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "HSS F338": { + "name": "Comparative Indian Lit", + "sections": { + "L1": { "instructors": [ - "Prasant Kumar P", - "Chowta Mallikharjunarao" + "MG PRASUNA" ], "sched": [ { - "room": "J106", + "room": "J218", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 4, - 5 + 7 ] } ] - }, - "P4": { + } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" + } + }, + "HSS F340": { + "name": "Post Colonial Literature", + "sections": { + "L1": { "instructors": [ - "Chetan Kumar V", - "Chowta Mallikharjunarao" + "VIJAY KUMAR TADAKAMAL" ], "sched": [ { - "room": "J106", + "room": "J217", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 8, 9 ] } ] - }, - "P5": { + } + }, + "compre": { + "date": "09/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "11.00am-12.30pm" + } + }, + "HSS F342": { + "name": "Adv Communicative Eng", + "sections": { + "L1": { "instructors": [ - "S K Chatterjee", - "Mary Vallankanni Manik" + "PRANESH BHARGAVA" ], "sched": [ { - "room": "J106", + "room": "J218", "days": [ + "M", + "W", "F" ], "hours": [ - 4, - 5 + 1 ] } ] - }, - "P6": { + } + }, + "compre": { + "date": "20/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "1.30pm-3.00pm" + } + }, + "HSS F346": { + "name": "International Relations", + "sections": { + "L1": { "instructors": [ - "Ponnalagu R N", - "Mary Vallankanni Manik" + "SUCHISMITA SATPATHY" ], "sched": [ { - "room": "J106", + "room": "J219", "days": [ - "W" + "M", + "W", + "F" ], "hours": [ - 4, - 5 + 9 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "09/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "11.00am-12.30pm" + } + }, + "HSS F361": { + "name": "Urban Policy and Governance", + "sections": { + "L1": { "instructors": [ - "Souvik Kundu" + "SUCHISMITA SATPATHY" ], "sched": [ { - "room": "I111", + "room": "J219", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 7 + 3 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "HSS F363": { + "name": "Disaster and Development", + "sections": { + "L1": { "instructors": [ - "Prasant Kumar P" + "BISWANATH DASH" ], "sched": [ { - "room": "I112", + "room": "J214", "days": [ - "T" + "T", + "Th", + "S" ], "hours": [ - 7 + 5 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "HSS F365": { + "name": "Science of Sustainable Happiness", + "sections": { + "L1": { "instructors": [ - "Prasant Kumar P" + "ARUNA LOLLA" ], "sched": [ { - "room": "I112", + "room": "J120", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 7 + 4 ] } ] - }, - "T4": { + } + }, + "compre": { + "date": "21/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "9.00am-10.30am" + } + }, + "HSS F369": { + "name": "Caste and Gender in India", + "sections": { + "L1": { "instructors": [ - "S K Chatterjee" + "SHILPAA ANAND" ], "sched": [ { - "room": "I111", + "room": "J119", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 1 + 4 ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "21/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "9.00am-10.30am" + } + }, + "INSTR F216": { + "name": "Electronic Device Simulation", + "sections": { + "L1": { "instructors": [ - "S K Chatterjee" + "SAYAN KANUNGO", + "Aditya Tiwari", + "Parikshit Parshuram Sahatiy" ], "sched": [ { - "room": "I111", + "room": "LAB", "days": [ - "S" + "M", + "W" ], "hours": [ - 1 + 6, + 7 ] } ] } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" } }, - "INSTR F342": { - "name": "Power Electronics", + "INSTR F241": { + "name": "Microproc & Interfacing", "sections": { "L1": { "instructors": [ - "SUDHA RADHIKA" + "PRASHANT WALI" ], "sched": [ { - "room": "F104", + "room": "F102", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 2 + 3 + ] + } + ] + }, + "L2": { + "instructors": [ + "Gopal Krishna Kamath M" + ], + "sched": [ + { + "room": "F105", + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 3 ] } ] }, "P1": { "instructors": [ - "Mithun Mondal", - "E Prasanth Kumar", - "Shrimathi H P" + "Prashant Wali", + "Swapna Challagundla" ], "sched": [ { - "room": "J114", + "room": "LAB", "days": [ - "M" + "T" ], "hours": [ - 4, - 5 + 7, + 8 ] } ] }, "P2": { "instructors": [ - "STP Srinivas", - "E Prasanth Kumar", - "Shrimathi H P" + "Anil Kumar U", + "Gowtham Polumati" ], "sched": [ { - "room": "J114", + "room": "LAB", "days": [ - "T" + "M" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] }, "P3": { "instructors": [ - "STP Srinivas", - "Amar Kumar Verma", - "Manoj Samal" + "Harish Vijay Dixit", + "Swapna Challagundla" ], "sched": [ { - "room": "J114", + "room": "LAB", "days": [ - "W" + "S" ], "hours": [ 4, @@ -14391,576 +11743,474 @@ }, "P4": { "instructors": [ - "STP Srinivas", - "Amar Kumar Verma", - "Manoj Samal" + "S K Sahoo", + "Mrunali Dnyaneshwar Wagh" ], "sched": [ { - "room": "J114", + "room": "LAB", "days": [ - "F" + "Th" ], "hours": [ - 4, - 5 + 6, + 7 ] } ] }, - "T1": { + "P5": { "instructors": [ - "Sudha Radhika" + "Soumya J", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I114", + "room": "LAB", "days": [ - "F" + "T" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T2": { + "P6": { "instructors": [ - "Sudha Radhika" + "Soumya J", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I114", + "room": "LAB", "days": [ - "W" + "Th" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T3": { + "P7": { "instructors": [ - "Sudha Radhika" + "Naveen Bokka", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I114", + "room": "LAB", "days": [ - "T" + "F" ], "hours": [ - 7 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "INSTR F343": { - "name": "Indus Instrument & Cont", - "sections": { - "L1": { + }, + "P8": { "instructors": [ - "BALASUBRAMANIAN M" + "Sourav Nandi", + "Battina Sindhu" ], "sched": [ { - "room": "I213", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "M" ], "hours": [ - 3 + 7, + 8 ] } ] }, - "T1": { + "P9": { "instructors": [ - "Balasubramanian M" + "Sourav Nandi", + "Battina Sindhu" ], "sched": [ { - "room": "I213", + "room": "LAB", "days": [ - "M" + "W" ], "hours": [ - 1 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "INSTR F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "PARIKSHIT PARSHURAM S" - ], - "sched": [] - } - } - }, - "INSTR F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "PARIKSHIT PARSHURAM S" - ], - "sched": [] - } - } - }, - "INSTR F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "KARUMBAIAH CHAPPANDA" - ], - "sched": [] - } - } - }, - "INSTR F377": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "KARUMBAIAH CHAPPANDA" - ], - "sched": [] - } - } - }, - "IS F311": { - "name": "Computer Graphics", - "sections": { - "L1": { + }, + "P10": { "instructors": [ - "TATHAGAT RAY" + "Karumbaiah Chappanda Nan", + "Sarda Sharma" ], "sched": [ { - "room": "F106", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 3 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "IS F341": { - "name": "Software Engineering", - "sections": { - "L1": { + }, + "P11": { "instructors": [ - "NARASIMHA BOLLOJU" + "Karumbaiah Chappanda Nan", + "Sarda Sharma" ], "sched": [ { - "room": "I214", + "room": "LAB", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 7 + 4, + 5 ] } ] }, - "P1": { + "P12": { "instructors": [ - "Narasimha Bolloju" + "Ramakant", + "Mrunali Dnyaneshwar Wagh" ], "sched": [ { - "room": "D331A", + "room": "LAB", "days": [ - "W" + "T" ], "hours": [ - 4, - 5 + 6, + 7 ] } ] }, - "P2": { + "P13": { "instructors": [ - "Narasimha Bolloju" + "Ramakant", + "Gowtham Polumati" ], "sched": [ { - "room": "D331A", + "room": "LAB", "days": [ "Th" ], "hours": [ - 8, - 9 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "IS F462": { - "name": "Network Programming", - "sections": { - "L1": { + }, + "P14": { "instructors": [ - "PARESH SAXENA" + "Anil Kumar U", + "Jayapiriya U S" ], "sched": [ { - "room": "G101", + "room": "LAB", "days": [ - "M", - "W", - "F" + "W" ], "hours": [ - 9 + 7, + 8 ] } ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "MATH F112": { - "name": "Mathematics II", - "sections": { - "L1": { + }, + "P15": { "instructors": [ - "A MICHAEL ALPHONSE" + "TO BE ANNOUNCED", + "Kurakula Anudeep" ], "sched": [ { - "room": "F107", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 2 + 7, + 8 ] } ] }, - "L2": { + "P16": { "instructors": [ - "A Ramu" + "Naveen Bokka", + "Kurakula Anudeep" ], "sched": [ { - "room": "G107", + "room": "LAB", "days": [ - "M", - "W", - "F" + "S" ], "hours": [ - 3 + 4, + 5 ] } ] }, - "L3": { + "T1": { "instructors": [ - "PK Sahoo" + "Prashant Wali" ], "sched": [ { - "room": "G107", + "room": "I111", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 2 + 1 ] } ] }, - "L4": { + "T2": { "instructors": [ - "TSL Radhika" + "Prashant Wali" ], "sched": [ { - "room": "F207", + "room": "I111", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 2 + 1 ] } ] }, - "L5": { + "T3": { "instructors": [ - "Kishore Kumar" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "G104", + "room": "I112", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 5 + 1 ] } ] }, - "L6": { + "T4": { "instructors": [ - "Sharan Gopal" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "G101", + "room": "I112", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 2 + 1 ] } ] }, - "L7": { + "T5": { "instructors": [ - "Anil Nemili" + "Runa Kumari" ], "sched": [ { - "room": "G206", + "room": "I114", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 2 + 1 ] } ] }, - "L8": { + "T6": { "instructors": [ - "Jhuma Sen Gupta" + "Chetan Kumar V" ], "sched": [ { - "room": "G208", + "room": "I113", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 3 + 1 ] } ] }, - "L9": { + "T7": { "instructors": [ - "Deepika" + "Chetan Kumar V" ], "sched": [ { - "room": "G106", + "room": "I113", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 2 + 1 ] } ] }, - "L10": { + "T8": { "instructors": [ - "Pratyusha Chattopadhyaa" + "Prashant Wali" ], "sched": [ { - "room": "G208", + "room": "I210", "days": [ - "M", - "W", - "F" + "M" ], "hours": [ - 2 + 1 ] } ] }, - "L11": { + "T9": { "instructors": [ - "K Bhargav Kumar" + "Gopal Krishna Kamath M" ], "sched": [ { - "room": "G108", + "room": "I114", "days": [ - "M", - "W", - "F" + "W" ], "hours": [ - 2 + 1 ] } ] }, - "T1": { + "T10": { "instructors": [ - "A Michael Alphonse", - "Sri Sakti Swarup Anupindi" + "Subhradeep Pal" ], "sched": [ { - "room": "F208", + "room": "I122", "days": [ - "Th" + "T" ], "hours": [ - 9 + 1 ] } ] }, - "T2": { + "T11": { "instructors": [ - "A Ramu", - "G Vinodkumar Rajlingappa" + "Subhradeep Pal" ], "sched": [ { - "room": "G106", + "room": "I122", "days": [ "Th" ], "hours": [ - 9 + 1 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "06/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "9.00am-10.30am" + } + }, + "INSTR F242": { + "name": "Control Systems", + "sections": { + "L1": { "instructors": [ - "PK Sahoo", - "Nakidi Shravani" + "PRATYUSH CHAKRABORT", + "Ankur Bhattacharjee" ], "sched": [ { - "room": "G101", + "room": "F102", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 9 + 2 ] } ] }, - "T4": { + "L2": { "instructors": [ - "TSL Radhika" + "Alivelu Manga Parimi", + "Joyjit Mukherjee" ], "sched": [ { - "room": "F207", + "room": "F105", "days": [ - "Th" + "M", + "W", + "F" ], "hours": [ - 9 + 2 ] } ] }, - "T5": { + "T1": { "instructors": [ - "Kishore Kumar" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "G105", + "room": "I210", "days": [ - "Th" + "T" ], "hours": [ 9 @@ -14968,14 +12218,13 @@ } ] }, - "T6": { + "T2": { "instructors": [ - "Sharan Gopal", - "Faiz Imam" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "G208", + "room": "I210", "days": [ "Th" ], @@ -14985,16 +12234,15 @@ } ] }, - "T7": { + "T3": { "instructors": [ - "Anil Nemili", - "K Panduranga" + "Alivelu Manga Parimi" ], "sched": [ { - "room": "G206", + "room": "I211", "days": [ - "Th" + "T" ], "hours": [ 9 @@ -15002,14 +12250,13 @@ } ] }, - "T8": { + "T4": { "instructors": [ - "Jhuma Sen Gupta", - "Anjali P V" + "Manish Laxminarayan Bhaiy" ], "sched": [ { - "room": "G207", + "room": "I211", "days": [ "Th" ], @@ -15019,31 +12266,29 @@ } ] }, - "T9": { + "T5": { "instructors": [ - "Deepika", - "Aleena Philip" + "Pratyush Chakraborty" ], "sched": [ { - "room": "G104", + "room": "I212", "days": [ - "Th" + "W" ], "hours": [ - 9 + 5 ] } ] }, - "T10": { + "T6": { "instructors": [ - "Pratyusha Chattopadhyaa", - "Naredla Alekhya Reddy" + "Pratyush Chakraborty" ], "sched": [ { - "room": "G107", + "room": "I212", "days": [ "Th" ], @@ -15053,82 +12298,64 @@ } ] }, - "T11": { + "T7": { "instructors": [ - "K Bhargav Kumar" + "Joyjit Mukherjee" ], "sched": [ { - "room": "G108", + "room": "I212", "days": [ - "Th" + "W" ], "hours": [ - 9 + 5 ] } ] } }, "compre": { - "date": "09/05", - "session": "FN" + "date": "11/05", + "session": "AN" }, "midsem": { - "date": "5/3", - "time": "11.00 -12.30 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "MATH F113": { - "name": "Probability and Statistics", + "INSTR F243": { + "name": "Signals & Systems", "sections": { "L1": { "instructors": [ - "MANISH KUMAR" + "RAMAKANT" ], "sched": [ { - "room": "G207", + "room": "F105", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 2 + 3 ] } ] }, "L2": { "instructors": [ - "DK Satpathi" - ], - "sched": [ - { - "room": "F208", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 2 - ] - } - ] - }, - "L3": { - "instructors": [ - "B Mishra" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "F108", + "room": "F104", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 3 @@ -15136,143 +12363,142 @@ } ] }, - "L4": { + "T1": { "instructors": [ - "K Venkata Ratnam" + "Ramakant" ], "sched": [ { - "room": "F208", + "room": "I213", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 3 + 1 ] } ] }, - "L5": { + "T2": { "instructors": [ - "PTV Praveen Kumar" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "F108", + "room": "I210", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 8 + 1 ] } ] }, - "L6": { + "T3": { "instructors": [ - "Jagan Mohan J" + "BVVSN Prabhakar Rao" ], "sched": [ { - "room": "G203", + "room": "I210", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 2 + 1 ] } ] }, - "L7": { + "T4": { "instructors": [ - "Sumit Kumar V" + "Venkateswaran R" ], "sched": [ { - "room": "G106", + "room": "I211", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 3 + 1 ] } ] }, - "L8": { + "T5": { "instructors": [ - "Santanu Koley" + "Venkateswaran R" ], "sched": [ { - "room": "G204", + "room": "I211", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 2 + 1 ] } ] }, - "L9": { + "T6": { "instructors": [ - "Debopam Chakraborthy" + "Amit Ranjan Azad" ], "sched": [ { - "room": "G105", + "room": "I212", "days": [ - "T", - "Th", - "S" + "T" ], "hours": [ - 5 + 9 ] } ] }, - "L10": { + "T7": { "instructors": [ - "G Murali Mohan Reddy" + "Amit Ranjan Azad" ], "sched": [ { - "room": "G105", - "days": [ - "T", - "Th", - "S" + "room": "I212", + "days": [ + "Th" ], "hours": [ - 2 + 1 ] } ] - }, - "L11": { + } + }, + "compre": { + "date": "19/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "9.00am-10.30am" + } + }, + "INSTR F244": { + "name": "Microelectronic Circuits", + "sections": { + "L1": { "instructors": [ - "Nirman Ganguly" + "SYED ERSHAD AHMED" ], "sched": [ { - "room": "G107", + "room": "F105", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 2 @@ -15280,17 +12506,17 @@ } ] }, - "L12": { + "L2": { "instructors": [ - "Sabyasachi Dey" + "Karumbaiah Chappanda Nan" ], "sched": [ { - "room": "G105", + "room": "F104", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 2 @@ -15300,12 +12526,11 @@ }, "T1": { "instructors": [ - "Manish Kumar", - "Tusharakanta Pradhan" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "G207", + "room": "J121", "days": [ "T" ], @@ -15317,14 +12542,13 @@ }, "T2": { "instructors": [ - "DK Satpathi", - "A Karthik" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "F208", + "room": "J121", "days": [ - "T" + "Th" ], "hours": [ 9 @@ -15334,29 +12558,27 @@ }, "T3": { "instructors": [ - "B Mishra", - "Agrawal Amarkumar Shyams" + "Syed Ershad Ahmed" ], "sched": [ { - "room": "F107", + "room": "J121", "days": [ - "T" + "F" ], "hours": [ - 9 + 1 ] } ] }, "T4": { "instructors": [ - "K Venkata Ratnam", - "Sanjay Mandal" + "Karumbaiah Chappanda Nan" ], "sched": [ { - "room": "F207", + "room": "J206", "days": [ "T" ], @@ -15368,14 +12590,13 @@ }, "T5": { "instructors": [ - "PTV Praveen Kumar", - "Basua Debananda" + "Karumbaiah Chappanda Nan" ], "sched": [ { - "room": "F108", + "room": "J206", "days": [ - "T" + "Th" ], "hours": [ 9 @@ -15385,12 +12606,11 @@ }, "T6": { "instructors": [ - "Jagan Mohan J", - "N S Gopal" + "Surya Shankar Dan" ], "sched": [ { - "room": "G105", + "room": "J214", "days": [ "T" ], @@ -15402,238 +12622,228 @@ }, "T7": { "instructors": [ - "Sumit Kumar V", - "T Ranjan Panigrahi" + "Surya Shankar Dan" ], "sched": [ { - "room": "I114", + "room": "J214", "days": [ - "T" + "Th" ], "hours": [ 9 ] } ] - }, - "T8": { + } + }, + "compre": { + "date": "17/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "11.00am-12.30pm" + } + }, + "INSTR F266": { + "name": "Study Project", + "sections": { + "L1": { + "instructors": [ + "STP SRINIVAS" + ], + "sched": [] + } + } + }, + "INSTR F341": { + "name": "Analog Electronics", + "sections": { + "L1": { "instructors": [ - "Santanu Koley" + "PRASANT KUMAR P" ], "sched": [ { - "room": "G108", + "room": "J214", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 9 + 8 ] } ] }, - "T9": { + "L2": { "instructors": [ - "Debopam Chakraborthy" + "Amit Kumar Panda" ], "sched": [ { - "room": "I122", + "room": "F104", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 9 + 8 ] } ] }, - "T10": { + "P1": { "instructors": [ - "G Murali Mohan Reddy" + "Prasant Kumar P", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "G107", + "room": "LAB", "days": [ - "T" + "F" ], "hours": [ - 9 + 4, + 5 ] } ] }, - "T11": { + "P2": { "instructors": [ - "Nirman Ganguly", - "Tapaswini Patro" + "Prasant Kumar P", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "I210", + "room": "LAB", "days": [ - "T" + "M" ], "hours": [ - 9 + 4, + 5 ] } ] }, - "T12": { + "P3": { "instructors": [ - "Sabyasachi Dey" + "Rajesh Kumar Tripathy", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "G204", + "room": "LAB", "days": [ - "T" + "W" ], "hours": [ - 9 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "01/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "9.00 - 10.30AM" - } - }, - "MATH F213": { - "name": "Discrete Mathematics", - "sections": { - "L1": { + }, + "P4": { "instructors": [ - "SABYASACHI DEY" + "Chaluvadi V Naga Bhaskar", + "Renuka.H" ], "sched": [ { - "room": "G208", + "room": "LAB", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ - 7 + 8, + 9 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "MATH F241": { - "name": "Mathematical Methods", - "sections": { - "L1": { + }, + "P5": { "instructors": [ - "SANTANU KOLEY", - "Jagan Mohan J" + "Joyjit Mukherjee", + "Chaluvadi V Naga Bhaskar" ], "sched": [ { - "room": "G208", + "room": "LAB", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 4 + 8, + 9 ] } ] }, - "T1": { + "P6": { "instructors": [ - "Santanu Koley" + "Joyjit Mukherjee" ], "sched": [ { - "room": "J219", + "room": "LAB", "days": [ - "Th" + "M" ], "hours": [ - 9 + 6, + 7 ] } ] }, - "T2": { + "T1": { "instructors": [ - "Jagan Mohan J" + "Prasant Kumar P" ], "sched": [ { - "room": "J220", + "room": "I211", "days": [ - "Th" + "M" ], "hours": [ - 9 + 1 ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "FN" - }, - "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" - } - }, - "MATH F242": { - "name": "Operations Research", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "PTV PRAVEEN KUMAR", - "DK Satpathi" + "Prasant Kumar P" ], "sched": [ { - "room": "G208", + "room": "I211", "days": [ - "M", - "W", - "F" + "W" ], "hours": [ - 5 + 1 ] } ] }, - "T1": { + "T3": { "instructors": [ - "DK Satpathi" + "Amit Kumar Panda" ], "sched": [ { - "room": "J219", + "room": "I212", "days": [ - "Th" + "M" ], "hours": [ 1 @@ -15641,328 +12851,275 @@ } ] }, - "T2": { + "T4": { "instructors": [ - "PTV Praveen Kumar" + "Amit Kumar Panda" ], "sched": [ { - "room": "J220", + "room": "I212", "days": [ - "Th" + "F" ], "hours": [ 1 ] } ] - } - }, - "compre": { - "date": "14/05", - "session": "FN" - }, - "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" - } - }, - "MATH F243": { - "name": "Graphs and Networks", - "sections": { - "L1": { + }, + "T5": { "instructors": [ - "PK SAHOO", - "A Michael Alphonse" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "G208", + "room": "I213", "days": [ - "T", - "Th", - "S" + "M" ], "hours": [ - 5 + 1 ] } ] }, - "T1": { + "T6": { "instructors": [ - "PK Sahoo" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "J219", + "room": "I213", "days": [ - "T" + "W" ], "hours": [ - 9 + 1 ] } ] }, - "T2": { + "T7": { "instructors": [ - "A Michael Alphonse" + "Rajesh Kumar Tripathy" ], "sched": [ { - "room": "J220", + "room": "I213", "days": [ - "T" + "F" ], "hours": [ - 9 + 1 ] } ] } }, "compre": { - "date": "02/05", - "session": "FN" + "date": "12/05", + "session": "AN" }, "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "3.30pm-5.00pm" } }, - "MATH F244": { - "name": "Measure & Integration", + "INSTR F342": { + "name": "Power Electronics", "sections": { "L1": { "instructors": [ - "K BHARGAV KUMAR", - "Manish Kumar" + "STP SRINIVAS" ], "sched": [ { - "room": "J219", + "room": "F102", "days": [ "T", "Th", "S" ], "hours": [ - 4 + 5 ] } ] }, - "T1": { + "P1": { "instructors": [ - "Manish Kumar" + "Sudha Radhika", + "Santhi Durganjali Challa" ], "sched": [ { - "room": "J219", + "room": "LAB", "days": [ - "T" + "M" ], "hours": [ - 1 + 4, + 5 ] } ] }, - "T2": { + "P2": { "instructors": [ - "K Bhargav Kumar" + "Sudha Radhika", + "Santhi Durganjali Challa" ], "sched": [ { - "room": "J220", + "room": "LAB", "days": [ - "T" + "W" ], "hours": [ - 1 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "AN" - }, - "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" - } - }, - "MATH F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "JAGAN MOHAN J" - ], - "sched": [] - } - } - }, - "MATH F341": { - "name": "Intro to Functional Anal", - "sections": { - "L1": { + }, + "P3": { "instructors": [ - "JHUMA SEN GUPTA", - "Debopam Chakraborthy" + "Sudha Radhika", + "Nawin Ra" ], "sched": [ { - "room": "G208", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 2 + 4, + 5 ] } ] }, - "T1": { + "P4": { "instructors": [ - "Jhuma Sen Gupta" + "STP Srinivas", + "Nawin Ra" ], "sched": [ { - "room": "J219", + "room": "LAB", "days": [ - "M" + "T" ], "hours": [ - 1 + 8, + 9 ] } ] }, - "T2": { + "T1": { "instructors": [ - "Debopam Chakraborthy" + "STP Srinivas" ], "sched": [ { - "room": "J220", + "room": "I210", "days": [ - "M" + "W" ], "hours": [ 1 ] } ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "MATH F342": { - "name": "Differential Geometry", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "B MISHRA", - "Sumit Kumar V" + "STP Srinivas" ], "sched": [ { - "room": "G208", + "room": "I210", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 3 + 1 ] } ] }, - "T1": { + "T3": { "instructors": [ - "B Mishra" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "J219", + "room": "I212", "days": [ - "W" + "T" ], "hours": [ - 1 + 7 ] } ] }, - "T2": { + "T4": { "instructors": [ - "Sumit Kumar V" + "Ankur Bhattacharjee" ], "sched": [ { - "room": "J220", + "room": "I212", "days": [ - "W" + "Th" ], "hours": [ - 1 + 7 ] } ] } }, "compre": { - "date": "06/05", - "session": "AN" + "date": "23/05", + "session": "FN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "16/03", + "time": "3.30pm-5.00pm" } }, - "MATH F343": { - "name": "Partial Diff Equations", + "INSTR F343": { + "name": "Indus Instrument & Cont", "sections": { "L1": { "instructors": [ - "ANIL NEMILI", - "G Murali Mohan Reddy" + "PONNALAGU R N" ], "sched": [ { - "room": "G208", + "room": "F107", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 9 + 4 ] } ] }, "T1": { "instructors": [ - "Anil Nemili" + "Ponnalagu R N" ], "sched": [ { - "room": "J219", + "room": "I212", "days": [ "F" ], @@ -15974,121 +13131,139 @@ }, "T2": { "instructors": [ - "G Murali Mohan Reddy" + "Ponnalagu R N" ], "sched": [ { - "room": "J220", + "room": "I122", "days": [ - "F" + "T" ], "hours": [ - 1 + 7 ] } ] } }, "compre": { - "date": "11/05", - "session": "FN" + "date": "18/05", + "session": "AN" }, "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" + "date": "15/03", + "time": "3.30pm-5.00pm" } }, - "MATH F353": { - "name": "Statistical Infer & App", + "INSTR F366": { + "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "V VENKATA HARA GOPAL" + "SUBHRADEEP PAL" ], - "sched": [ - { - "room": "I113", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 7 - ] - } - ] + "sched": [] } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" } }, - "MATH F366": { + "INSTR F367": { "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "K VENKATA RATNAM" + "SUBHRADEEP PAL" ], "sched": [] } } }, - "MATH F367": { - "name": "Laboratory Project", + "INSTR F376": { + "name": "Design Project", "sections": { "L1": { "instructors": [ - "K VENKATA RATNAM" + "KARUMBAIAH CHAPPANDA" ], "sched": [] } } }, - "MATH F376": { + "INSTR F377": { "name": "Design Project", "sections": { "L1": { "instructors": [ - "KISHORE KUMAR" + "KARUMBAIAH CHAPPANDA" ], "sched": [] } } }, - "MATH F377": { - "name": "Design Project", + "INSTR F432": { + "name": "Medical Instrumentaiton", "sections": { "L1": { "instructors": [ - "KISHORE KUMAR" + "VENKATESWARAN R" ], - "sched": [] + "sched": [ + { + "room": "F107", + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 3 + ] + } + ] } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" } }, - "MATH F423": { - "name": "Introduction to Algebraic Topology", + "IS F341": { + "name": "Software Engineering", "sections": { "L1": { "instructors": [ - "SHARAN GOPAL" + "NARASIMHA BOLLOJU" ], "sched": [ { - "room": "I112", + "room": "I111", "days": [ "M", "W", "F" ], "hours": [ + 2 + ] + } + ] + }, + "P1": { + "instructors": [ + "Narasimha Bolloju", + "Subhashree Barada" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "T" + ], + "hours": [ + 7, 8 ] } @@ -16096,86 +13271,103 @@ } }, "compre": { - "date": "14/05", - "session": "AN" + "date": "11/05", + "session": "FN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "12/03", + "time": "9.00am-10.30am" } }, - "MATH F424": { - "name": "Applied Stochastic Process", + "MATH F113": { + "name": "Probability and Statistics", "sections": { "L1": { "instructors": [ - "NIRMAN GANGULY" + "Sabyasachi Dey" ], "sched": [ { - "room": "I113", + "room": "G103", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 9 + 1 + ] + } + ] + }, + "T1": { + "instructors": [ + "Hirendra Kumar Garai" + ], + "sched": [ + { + "room": "I213", + "days": [ + "T" + ], + "hours": [ + 6 ] } ] } }, "compre": { - "date": "11/05", + "date": "10/05", "session": "FN" }, "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" + "date": "11/03", + "time": "1.30pm-3.00pm" } }, - "MATH F471": { - "name": "Nonlinear Optimization", + "MATH F213": { + "name": "Discrete Mathematics", "sections": { "L1": { "instructors": [ - "K VENKATA RATNAM" + "PK SAHOO", + "Sajith P" ], "sched": [ { - "room": "I111", + "room": "F108", "days": [ "M", "W", "F" ], "hours": [ - 8 + 4 ] } ] } }, "compre": { - "date": "14/05", - "session": "AN" + "date": "21/05", + "session": "FN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "14/03", + "time": "9.00am-10.30am" } }, - "MATH F481": { - "name": "Commutative Algebra", + "MATH F231": { + "name": "Number Theory", "sections": { "L1": { "instructors": [ - "PRATYUSHA CHATTOPADH" + "NABIN KUMAR MEHER" ], "sched": [ { - "room": "I112", + "room": "I222", "days": [ "M", "W", @@ -16189,215 +13381,233 @@ } }, "compre": { - "date": "13/05", - "session": "FN" + "date": "10/05", + "session": "AN" }, "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" + "date": "11/03", + "time": "3.30pm-5.00pm" } }, - "ME F110": { - "name": "Workshop Practice", + "MATH F241": { + "name": "Mathematical Methods", "sections": { "L1": { "instructors": [ - "AMRITHA PRIYADARSHINI", - "Akhil Bhardwaj", - "Ankit Sharma" + "JAGAN MOHAN J" ], "sched": [ { - "room": "WS", + "room": "G108", "days": [ - "M", - "W" + "T", + "Th", + "S" ], "hours": [ - 4, - 5 + 3 ] } ] }, - "L2": { + "T1": { "instructors": [ - "Chithajalu Kiran Sagar", - "P Chennakesava Sai" + "Kshma Trivedi" ], "sched": [ { - "room": "WS", + "room": "I221", "days": [ - "T", - "Th" + "T" ], "hours": [ - 4, - 5 + 1 ] } ] }, - "L3": { + "T2": { "instructors": [ - "J Murali Mohan", - "Patel Kuntal Himanshubhai" + "Sushil Pathak" ], "sched": [ { - "room": "WS", + "room": "I222", "days": [ - "W", - "F" + "T" ], "hours": [ - 7, - 8 + 1 ] } ] - }, - "L4": { + } + }, + "compre": { + "date": "19/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "9.00am-10.30am" + } + }, + "MATH F242": { + "name": "Operations Research", + "sections": { + "L1": { "instructors": [ - "Srinivasa Murali Kartheek S", - "MD Abdul Wahed" + "DK SATPATHI" ], "sched": [ { - "room": "WS", + "room": "G108", "days": [ "M", - "T" + "W", + "F" ], "hours": [ - 7, - 8 + 3 ] } ] }, - "L5": { + "T1": { "instructors": [ - "Jella Gangadhar", - "Ronanki Suresh" + "Ashwini S" ], "sched": [ { - "room": "WS", + "room": "I221", "days": [ - "F", - "S" + "Th" ], "hours": [ - 4, - 5 + 1 ] } ] - } - } - }, - "ME F241": { - "name": "Machine Design & Drawing", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "NITIN RAMESH K" + "Tathe Kartik Vilasrao" ], "sched": [ { - "room": "F103", + "room": "I222", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 4 + 1 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "06/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "9.00am-10.30am" + } + }, + "MATH F243": { + "name": "Graphs and Networks", + "sections": { + "L1": { "instructors": [ - "C Anand Badrish", - "Gauri Rajendra M" + "A MICHAEL ALPHONSE" ], "sched": [ { - "room": "D208 A", + "room": "G108", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 2, - 3 + 2 ] } ] }, - "P2": { + "T1": { "instructors": [ - "C Anand Badrish", - "P Sandeep" + "Priyanka Vishwakarma" ], "sched": [ { - "room": "D208 A", + "room": "I221", "days": [ - "W" + "T" ], "hours": [ - 7, - 8 + 9 ] } ] }, - "P3": { + "T2": { "instructors": [ - "P Sandeep", - "Gauri Rajendra M" + "Sunil Rampuria" ], "sched": [ { - "room": "D208 A", + "room": "I222", "days": [ - "F" + "T" ], "hours": [ - 7, - 8 + 9 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "17/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "11.00am-12.30pm" + } + }, + "MATH F244": { + "name": "Measure & Integration", + "sections": { + "L1": { "instructors": [ - "Nitin Ramesh K" + "SHARAN GOPAL" ], "sched": [ { - "room": "G202", + "room": "G108", "days": [ - "T" + "M", + "W", + "F" ], "hours": [ - 9 + 2 ] } ] }, - "T2": { + "T1": { "instructors": [ - "SP Regalla" + "Anshid Aboobacker" ], "sched": [ { - "room": "G203", + "room": "I221", "days": [ - "T" + "Th" ], "hours": [ 9 @@ -16405,15 +13615,15 @@ } ] }, - "T3": { + "T2": { "instructors": [ - "Brajesh Kumar Panigrahi" + "Purohit Nisarg Bharatbhai" ], "sched": [ { - "room": "G205", + "room": "I222", "days": [ - "T" + "Th" ], "hours": [ 9 @@ -16423,413 +13633,539 @@ } }, "compre": { - "date": "02/05", - "session": "FN" + "date": "11/05", + "session": "AN" }, "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "ME F242": { - "name": "Ic Engines", + "MATH F266": { + "name": "Study Project", "sections": { "L1": { "instructors": [ - "S S DESHMUKH" + "SABYASACHI DEY" + ], + "sched": [] + } + } + }, + "MATH F314": { + "name": "Algebra-ii", + "sections": { + "L1": { + "instructors": [ + "PRATYUSHA CHATTOPADH" ], "sched": [ { - "room": "F104", + "room": "I221", "days": [ - "T", - "Th" + "M", + "W", + "F" ], "hours": [ - 5 + 8 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "12/05", + "session": "AN" + }, + "midsem": { + "date": "12/03", + "time": "3.30pm-5.00pm" + } + }, + "MATH F341": { + "name": "Intro to Functional Anal", + "sections": { + "L1": { "instructors": [ - "Sama.Sanghamitra", - "S S Deshmukh" + "JHUMA SEN GUPTA" ], "sched": [ { - "room": "G202", + "room": "I222", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 1 + 5 ] } ] }, - "T2": { + "T1": { "instructors": [ - "P Ankamma Rao", - "S S Deshmukh" + "Nakidi Shravani" ], "sched": [ { - "room": "G203", + "room": "I221", "days": [ - "S" + "T" ], "hours": [ - 1 + 7 ] } ] }, - "T3": { + "T2": { "instructors": [ - "Shaik Ayub Mohiddin", - "S S Deshmukh" + "Debarati Mondal" ], "sched": [ { - "room": "G205", + "room": "I222", "days": [ - "S" + "T" ], "hours": [ - 1 + 7 ] } ] } }, "compre": { - "date": "08/05", + "date": "14/05", "session": "FN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "14/03", + "time": "3.30pm-5.00pm" } }, - "ME F243": { - "name": "Production Techniques I", + "MATH F342": { + "name": "Differential Geometry", "sections": { "L1": { "instructors": [ - "N SURESH KUMAR REDDY" + "SUMIT KUMAR V" ], "sched": [ { - "room": "F103", + "room": "I222", "days": [ "M", - "W" + "W", + "F" ], "hours": [ - 5 + 4 ] } ] }, - "P1": { + "T1": { "instructors": [ - "Amar S D", - "Gandla Praveen Kumar" + "Sri Sakti Swarup Anupindi" ], "sched": [ { - "room": "WS", + "room": "I221", "days": [ - "Th" + "T" ], "hours": [ - 9, - 10 + 8 ] } ] }, - "P2": { + "T2": { "instructors": [ - "Pawan Kumar Chauhan", - "Gandla Praveen Kumar" + "G Vinodkumar Rajlingappa" ], "sched": [ { - "room": "WS", + "room": "I222", "days": [ - "W" + "T" ], "hours": [ - 2, - 3 + 8 ] } ] - }, - "P3": { + } + }, + "compre": { + "date": "21/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "9.00am-10.30am" + } + }, + "MATH F343": { + "name": "Partial Diff Equations", + "sections": { + "L1": { "instructors": [ - "Amar S D", - "Pawan Kumar Chauhan" + "G MURALI MOHAN REDDY" ], "sched": [ { - "room": "WS", + "room": "I222", "days": [ + "M", + "W", "F" ], "hours": [ - 2, - 3 + 9 ] } ] }, "T1": { "instructors": [ - "N Suresh Kumar Reddy" + "Sanjay Mandal" ], "sched": [ { - "room": "G202", + "room": "I221", "days": [ - "T" + "Th" ], "hours": [ - 1 + 7 ] } ] }, "T2": { "instructors": [ - "Ravi Shanker Vidyarthy" - ], - "sched": [ - { - "room": "G203", - "days": [ - "T" - ], - "hours": [ - 1 - ] - } - ] - }, - "T3": { - "instructors": [ - "Sujith R" + "Sandhya Mel" ], "sched": [ { - "room": "F205", + "room": "I222", "days": [ - "W" + "Th" ], "hours": [ - 1 + 7 ] } ] } }, "compre": { - "date": "14/05", + "date": "09/05", "session": "FN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" + "date": "11/03", + "time": "9.00am-10.30am" } }, - "ME F244": { - "name": "Kin & Dyn of Machines", + "MATH F353": { + "name": "Statistical Infer & App", "sections": { "L1": { "instructors": [ - "YV DASESWARA RAO" + "FARIDA PARVEZ BARBHUI" ], "sched": [ { - "room": "F104", + "room": "I213", "days": [ "T", "Th", "S" ], "hours": [ - 4 + 2 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "MATH F366": { + "name": "Laboratory Project", + "sections": { + "L1": { "instructors": [ - "YV Daseswara Rao" + "NIRMAN GANGULY" ], - "sched": [ - { - "room": "D208 C", - "days": [ - "Th" - ], - "hours": [ - 1 - ] - } - ] - }, - "T2": { + "sched": [] + } + } + }, + "MATH F367": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "NIRMAN GANGULY" + ], + "sched": [] + } + } + }, + "MATH F376": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "PRATYUSHA CHATTOPADH" + ], + "sched": [] + } + } + }, + "MATH F377": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "PRATYUSHA CHATTOPADH" + ], + "sched": [] + } + } + }, + "MATH F420": { + "name": "Mathematical Modelling", + "sections": { + "L1": { "instructors": [ - "Inturi Vamsi" + "SANTANU KOLEY" ], "sched": [ { - "room": "D208 A", + "room": "I222", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 1 + 2 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "MATH F421": { + "name": "Combinatorial Mathematics", + "sections": { + "L1": { "instructors": [ - "G Lakshmi Srinivas" + "DEBOPAM CHAKRABORTH" ], "sched": [ { - "room": "D208 B", + "room": "I122", "days": [ - "Th" + "T", + "Th", + "S" ], "hours": [ - 1 + 3 ] } ] } }, "compre": { - "date": "12/05", + "date": "19/05", "session": "AN" }, "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "11.00am-12.30pm" } }, - "ME F266": { - "name": "Study Project", + "MATH F422": { + "name": "Num Mthd For Partial Diff Eq", "sections": { "L1": { "instructors": [ - "R PARAMESHWARAN" + "ANIL NEMILI" ], - "sched": [] + "sched": [ + { + "room": "I122", + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 2 + ] + } + ] } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" } }, - "ME F341": { - "name": "Primemovers & Fluid Mach", + "MATH F456": { + "name": "Cosmology", "sections": { "L1": { "instructors": [ - "JEEVAN JAIDI" + "B MISHRA" ], "sched": [ { - "room": "F207", + "room": "I222", "days": [ - "T", - "Th" + "M", + "W", + "F" ], "hours": [ 2 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "11/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "9.00am-10.30am" + } + }, + "MATH F471": { + "name": "Nonlinear Optimization", + "sections": { + "L1": { "instructors": [ - "M Srinivas" + "K VENKATA RATNAM" ], "sched": [ { - "room": "E124", + "room": "I222", "days": [ - "M" + "M", + "W", + "F" ], "hours": [ - 4, - 5 + 3 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "ME F218": { + "name": "Advanced Mechanics of Solids", + "sections": { + "L1": { "instructors": [ - "M Srinivas" + "BRAJESH KUMAR PANIGR" ], "sched": [ { - "room": "E124", + "room": "F103", "days": [ + "M", "W" ], "hours": [ - 4, - 5 + 2 ] } ] }, - "P3": { + "T1": { "instructors": [ - "M Srinivas" + "Balija Upendra", + "Brajesh Kumar Panigrahi" ], "sched": [ { - "room": "E124", + "room": "F202", "days": [ - "F" + "Th" ], "hours": [ - 4, - 5 + 1 ] } ] }, - "T1": { + "T2": { "instructors": [ - "Jeevan Jaidi" + "Gudlavalleti Deepak Kumar", + "Brajesh Kumar Panigrahi" ], "sched": [ { - "room": "F207", + "room": "F201", "days": [ - "S" + "Th" ], "hours": [ - 2 + 1 ] } ] }, - "T2": { + "T3": { "instructors": [ - "KRC Murthy" + "TO BE ANNOUNCED", + "Pavan Kumar P" ], "sched": [ { - "room": "F208", + "room": "F203", "days": [ - "W" + "Th" ], "hours": [ 1 @@ -16839,28 +14175,28 @@ } }, "compre": { - "date": "04/05", + "date": "11/05", "session": "AN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "ME F342": { - "name": "Computer Aided Design", + "ME F219": { + "name": "Manufacturing Processes", "sections": { "L1": { "instructors": [ - "SP REGALLA" + "N SURESH KUMAR REDDY" ], "sched": [ { "room": "F103", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ 3 @@ -16870,32 +14206,32 @@ }, "P1": { "instructors": [ - "Ramayee L", - "P V Sai Divya" + "Petla Sivateja", + "Prabakaran Saravanan" ], "sched": [ { - "room": "D208 A", + "room": "WS", "days": [ - "M" + "W" ], "hours": [ - 4, - 5 + 7, + 8 ] } ] }, "P2": { "instructors": [ - "Ramayee L", - "Veeraiahgari Vamshi" + "Srinivasa Murali Kartheek S", + "N Suresh Kumar Reddy" ], "sched": [ { - "room": "D208 A", + "room": "WS", "days": [ - "W" + "Th" ], "hours": [ 4, @@ -16906,14 +14242,14 @@ }, "P3": { "instructors": [ - "Veeraiahgari Vamshi", - "P V Sai Divya" + "Ankit Sharma", + "Petla Sivateja" ], "sched": [ { - "room": "D208 A", + "room": "WS", "days": [ - "Th" + "T" ], "hours": [ 7, @@ -16924,14 +14260,14 @@ }, "T1": { "instructors": [ - "SP Regalla", - "TO BE ANNOUNCED" + "Srinivasa Murali Kartheek S", + "N Suresh Kumar Reddy" ], "sched": [ { - "room": "G101", + "room": "F207", "days": [ - "F" + "T" ], "hours": [ 1 @@ -16941,14 +14277,14 @@ }, "T2": { "instructors": [ - "Hemanth Mithun Praveen", - "SP Regalla" + "Ankit Sharma", + "Prabakaran Saravanan" ], "sched": [ { - "room": "G103", + "room": "F203", "days": [ - "F" + "T" ], "hours": [ 1 @@ -16958,14 +14294,14 @@ }, "T3": { "instructors": [ - "Lanka Tata Rao", - "SP Regalla" + "Jose Santo", + "Prabakaran Saravanan" ], "sched": [ { - "room": "G104", + "room": "F208", "days": [ - "F" + "T" ], "hours": [ 1 @@ -16976,215 +14312,132 @@ }, "compre": { "date": "06/05", - "session": "AN" + "session": "FN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "10/03", + "time": "9.00am-10.30am" } }, - "ME F343": { - "name": "Mechanical Vibrations", + "ME F220": { + "name": "Heat Transfer", "sections": { "L1": { "instructors": [ - "BRAJESH KUMAR PANIGR" - ], - "sched": [ - { - "room": "F207", - "days": [ - "M", - "W", - "F" - ], - "hours": [ - 3 - ] - } - ] - }, - "T1": { - "instructors": [ - "Brajesh Kumar Panigrahi" + "SATISH K DUBEY" ], "sched": [ { - "room": "F107", + "room": "F103", "days": [ - "M" + "T", + "Th", + "S" ], "hours": [ - 1 + 2 ] } ] }, - "T2": { - "instructors": [ - "YV Daseswara Rao" - ], - "sched": [ - { - "room": "F108", - "days": [ - "M" - ], - "hours": [ - 1 - ] - } - ] - } - }, - "compre": { - "date": "01/05", - "session": "AN" - }, - "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" - } - }, - "ME F344": { - "name": "Engineering Optimization", - "sections": { - "L1": { + "P1": { "instructors": [ - "AMIT KUMAR GUPTA" + "J Murali Mohan", + "M Srinivas" ], "sched": [ { - "room": "F104", + "room": "E111", "days": [ - "M", - "W" + "Th" ], "hours": [ - 2 + 7, + 8 ] } ] }, - "T1": { + "P2": { "instructors": [ - "Vardhanapu Muralidhar", - "Amit Kumar Gupta" + "Sunkara Prudhvi Raj", + "M Srinivas" ], "sched": [ { - "room": "G201", + "room": "E111", "days": [ "F" ], "hours": [ - 2 + 7, + 8 ] } ] }, - "T2": { + "P3": { "instructors": [ - "V Venkateswara Rao", - "Amit Kumar Gupta" + "B Sravya", + "Shaik Gouse Ahammad" ], "sched": [ { - "room": "G202", + "room": "E111", "days": [ - "F" + "T" ], "hours": [ - 2 + 4, + 5 ] } ] }, - "T3": { + "T1": { "instructors": [ - "Deepak Nabapure", - "Amit Kumar Gupta" + "Shaik Gouse Ahammad", + "Satish K Dubey" ], "sched": [ { - "room": "G204", - "days": [ - "F" - ], - "hours": [ - 2 - ] - } - ] - } - }, - "compre": { - "date": "09/05", - "session": "AN" - }, - "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" - } - }, - "ME F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "RAVI SHANKER VIDYARTH" - ], - "sched": [] - } - } - }, - "ME F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "RAVI SHANKER VIDYARTH" - ], - "sched": [] - } - } - }, - "ME F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "BRAJESH KUMAR PANIGR" - ], - "sched": [] - } - } - }, - "ME F377": { - "name": "Design Project", - "sections": { - "L1": { + "room": "F204", + "days": [ + "T" + ], + "hours": [ + 9 + ] + } + ] + }, + "T2": { "instructors": [ - "BRAJESH KUMAR PANIGR" + "J Murali Mohan", + "Satish K Dubey" ], - "sched": [] - } - } - }, - "ME F412": { - "name": "Product Plan & Control", - "sections": { - "L1": { + "sched": [ + { + "room": "F207", + "days": [ + "T" + ], + "hours": [ + 9 + ] + } + ] + }, + "T3": { "instructors": [ - "AMRITHA PRIYADARSHINI" + "Sunkara Prudhvi Raj", + "Satish K Dubey" ], "sched": [ { - "room": "G102", + "room": "F208", "days": [ - "M", - "W", - "F" + "T" ], "hours": [ 9 @@ -17194,401 +14447,405 @@ } }, "compre": { - "date": "11/05", - "session": "FN" + "date": "17/05", + "session": "AN" }, "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" + "date": "15/03", + "time": "11.00am-12.30pm" } }, - "ME F420": { - "name": "Power Plant Engineering", + "ME F221": { + "name": "Mechanisms and Machines", "sections": { "L1": { "instructors": [ - "M SRINIVAS" + "YV DASESWARA RAO", + "Brajesh Kumar Panigrahi" ], "sched": [ { - "room": "G202", + "room": "F103", "days": [ "T", "Th", "S" ], "hours": [ - 5 + 3 ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "ME F423": { - "name": "Micro-fluidics & its App", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "SATISH K DUBEY", - "Sanket Goel" + "YV Daseswara Rao" ], "sched": [ { - "room": "G206", + "room": "D208", "days": [ - "T", - "Th", - "S" + "Th" ], "hours": [ - 4 + 9 ] } ] }, - "P1": { + "T2": { "instructors": [ - "Satish K Dubey", - "Sangam Srikanth", - "Sanket Goel" + "Brajesh Kumar Panigrahi" ], "sched": [ { - "room": "D208 B", + "room": "D208", "days": [ "Th" ], "hours": [ - 6, - 7 + 9 + ] + } + ] + }, + "T3": { + "instructors": [ + "George Yuvaraj" + ], + "sched": [ + { + "room": "D208", + "days": [ + "Th" + ], + "hours": [ + 9 ] } ] } }, "compre": { - "date": "12/05", + "date": "19/05", "session": "FN" }, "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" + "date": "16/03", + "time": "9.00am-10.30am" } }, - "ME F452": { - "name": "Composite Material & Des", + "ME F241": { + "name": "Machine Design & Drawing", "sections": { "L1": { "instructors": [ - "C P KIRAN" + "NITIN RAMESH K" ], "sched": [ { - "room": "G107", + "room": "G105", "days": [ "M", "W", "F" ], "hours": [ - 8 + 2 ] } ] - } - }, - "compre": { - "date": "14/05", - "session": "AN" - }, - "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" - } - }, - "ME F461": { - "name": "Refrigeration & Aircond", - "sections": { - "L1": { + }, + "P1": { "instructors": [ - "S S DESHMUKH" + "P Sandeep" ], "sched": [ { - "room": "G101", + "room": "LAB", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ + 7, 8 ] } ] - } - }, - "compre": { - "date": "14/05", - "session": "AN" - }, - "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" - } - }, - "ME F482": { - "name": "Combustion", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "N JALAIAH" + "Nitin Ramesh K" ], "sched": [ { - "room": "F109", + "room": "G102", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 8 + 1 ] } ] } }, "compre": { - "date": "14/05", + "date": "11/05", "session": "AN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "ME F483": { - "name": "Wind Energy", + "ME F242": { + "name": "Ic Engines", "sections": { "L1": { "instructors": [ - "G R SABAREESH" + "S S DESHMUKH" ], "sched": [ { - "room": "G107", + "room": "G106", "days": [ "M", - "W", - "F" + "W" ], "hours": [ - 7 + 4 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "ME F484": { - "name": "Automotive Technology", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "R PARAMESHWARAN" + "S S Deshmukh" ], "sched": [ { - "room": "G104", + "room": "G106", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 5 + 4 ] } ] } }, "compre": { - "date": "08/05", - "session": "AN" + "date": "21/05", + "session": "FN" }, "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" + "date": "14/03", + "time": "9.00am-10.30am" } }, - "ME G512": { - "name": "Finite Element Method", + "ME F243": { + "name": "Production Techniques I", "sections": { "L1": { "instructors": [ - "PARDHA SARADHI GURUG" + "N SURESH KUMAR REDDY" ], "sched": [ { - "room": "G206", + "room": "F103", "days": [ "M", "W", "F" ], "hours": [ - 9 + 3 ] } ] }, "P1": { "instructors": [ - "Pardha Saradhi Gurugubelli" + "Petla Sivateja", + "Prabakaran Saravanan" ], "sched": [ { - "room": "D208 C", + "room": "WS", "days": [ "W" ], + "hours": [ + 7, + 8 + ] + } + ] + }, + "P2": { + "instructors": [ + "Srinivasa Murali Kartheek S", + "N Suresh Kumar Reddy" + ], + "sched": [ + { + "room": "WS", + "days": [ + "Th" + ], "hours": [ 4, 5 ] } ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "ME G513": { - "name": "Heating & Cool of Build", - "sections": { - "L1": { + }, + "P3": { "instructors": [ - "SANTANU PRASAD DATTA", - "S S Deshmukh" + "Ankit Sharma", + "Petla Sivateja" ], "sched": [ { - "room": "F202", + "room": "WS", "days": [ - "M", - "W", - "F" + "T" + ], + "hours": [ + 7, + 8 + ] + } + ] + }, + "T1": { + "instructors": [ + "Srinivasa Murali Kartheek S", + "N Suresh Kumar Reddy" + ], + "sched": [ + { + "room": "F207", + "days": [ + "T" ], "hours": [ - 4 + 1 ] } ] }, - "P1": { + "T2": { "instructors": [ - "Santanu Prasad Datta", - "Gi Venkata Naga Trivedi" + "Ankit Sharma", + "Prabakaran Saravanan" ], "sched": [ { - "room": "E221", + "room": "F203", "days": [ "T" ], "hours": [ - 6, - 7 + 1 ] } ] }, - "P2": { + "T3": { "instructors": [ - "Santanu Prasad Datta", - "Gi Venkata Naga Trivedi" + "Jose Santo", + "Prabakaran Saravanan" ], "sched": [ { - "room": "D208 C", + "room": "F208", "days": [ - "Th" + "T" ], "hours": [ - 6, - 7 + 1 ] } ] } }, "compre": { - "date": "02/05", + "date": "06/05", "session": "FN" }, "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" + "date": "10/03", + "time": "9.00am-10.30am" } }, - "ME G515": { - "name": "Comput Fluid Dynamics", + "ME F244": { + "name": "Kin & Dyn of Machines", "sections": { "L1": { "instructors": [ - "SUPRADEEPAN K" + "YV DASESWARA RAO", + "Brajesh Kumar Panigrahi" ], "sched": [ { - "room": "I122", + "room": "F103", "days": [ "T", "Th", "S" ], "hours": [ - 5 + 3 ] } ] }, - "P1": { + "T1": { "instructors": [ - "Supradeepan K" + "YV Daseswara Rao" ], "sched": [ { - "room": "D208 C", + "room": "D208", + "days": [ + "Th" + ], + "hours": [ + 9 + ] + } + ] + }, + "T2": { + "instructors": [ + "Brajesh Kumar Panigrahi" + ], + "sched": [ + { + "room": "D208", + "days": [ + "Th" + ], + "hours": [ + 9 + ] + } + ] + }, + "T3": { + "instructors": [ + "George Yuvaraj" + ], + "sched": [ + { + "room": "D208", "days": [ - "T", "Th" ], "hours": [ - 8, 9 ] } @@ -17596,193 +14853,191 @@ } }, "compre": { - "date": "08/05", + "date": "19/05", "session": "FN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "16/03", + "time": "9.00am-10.30am" + } + }, + "ME F266": { + "name": "Study Project", + "sections": { + "L1": { + "instructors": [ + "ABHISHEK SARKAR" + ], + "sched": [] + } } }, - "ME G516": { - "name": "Energy Systems Engineering", + "ME F318": { + "name": "Computer-aided Design", "sections": { "L1": { "instructors": [ - "R PARAMESHWARAN" + "SP REGALLA" ], "sched": [ { - "room": "F201", + "room": "F103", "days": [ "T", - "Th", - "S" + "Th" ], "hours": [ - 2 + 4 ] } ] }, "P1": { "instructors": [ - "Kandukuri Prudviraj" + "Gaurav Sharma", + "SP Regalla" ], "sched": [ { - "room": "E221", + "room": "D208", "days": [ - "M", - "W" + "F" ], "hours": [ - 2, - 3 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "04/05", - "session": "AN" - }, - "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "ME G534": { - "name": "Convect Heat & Mass Tran", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "JEEVAN JAIDI" + "Suswanth Poluru", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "F202", + "room": "D208", "days": [ - "M", - "W", - "F" + "W" ], "hours": [ + 4, 5 ] } ] }, - "P1": { + "P3": { "instructors": [ - "Jeevan Jaidi" + "TO BE ANNOUNCED" ], "sched": [ { - "room": "E111", + "room": "D208", + "days": [ + "Th" + ], + "hours": [ + 7, + 8 + ] + } + ] + }, + "T1": { + "instructors": [ + "Veeraiahgari Vamshi", + "SP Regalla" + ], + "sched": [ + { + "room": "F203", "days": [ - "M", "W" ], "hours": [ - 9, - 10 + 1 ] } ] - } - }, - "compre": { - "date": "14/05", - "session": "FN" - }, - "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" - } - }, - "ME G536": { - "name": "Thermal Equipment Design", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "SANTANU PRASAD DATTA" + "Gaurav Sharma", + "SP Regalla" ], "sched": [ { - "room": "F207", + "room": "F204", "days": [ - "T", - "Th", - "S" + "W" ], "hours": [ - 4 + 1 ] } ] }, - "P1": { + "T3": { "instructors": [ - "Satish K Dubey", - "B Sravya" + "Suswanth Poluru", + "SP Regalla" ], "sched": [ { - "room": "E111", + "room": "G102", "days": [ - "M" + "W" ], "hours": [ - 2, - 3 + 1 ] } ] }, - "P2": { + "T4": { "instructors": [ - "Satish K Dubey", - "B Sravya" + "Gudlavalleti Deepak Kumar", + "SP Regalla" ], "sched": [ { - "room": "D208 C", + "room": "G101", "days": [ "W" ], "hours": [ - 2, - 3 + 1 ] } ] } }, "compre": { - "date": "12/05", - "session": "FN" + "date": "18/05", + "session": "AN" }, "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "3.30pm-5.00pm" } }, - "ME G611": { - "name": "Comp Aided Anal & Design", + "ME F319": { + "name": "Vibrations and Control", "sections": { "L1": { "instructors": [ - "KURRA SURESH" + "G R SABAREESH", + "Arshad Javed" ], "sched": [ { - "room": "F203", + "room": "F103", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ 5 @@ -17790,198 +15045,196 @@ } ] }, - "P1": { + "T1": { "instructors": [ - "Kurra Suresh", - "Wankhede Pankaj Rambhau" + "Kalyani Panigrahi", + "G R Sabareesh" ], "sched": [ { - "room": "D208 B", + "room": "F202", "days": [ - "M", - "W" + "F" ], "hours": [ - 1, - 2, - 3 + 1 ] } ] - } - }, - "compre": { - "date": "14/05", - "session": "FN" - }, - "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" - } - }, - "MEL G623": { - "name": "Advanced Vlsi Design", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "SURYA SHANKAR DAN" + "Pichika S V V S Narayana", + "G R Sabareesh" ], "sched": [ { - "room": "I114", + "room": "F203", "days": [ - "M", - "W", "F" ], "hours": [ - 2 + 1 ] } ] }, - "P1": { + "T3": { "instructors": [ - "Surya Shankar Dan" + "Shaik Ayub Mohiddin", + "G R Sabareesh" ], "sched": [ { - "room": "I124", + "room": "F204", "days": [ - "M", "F" ], "hours": [ - 9, - 10 + 1 + ] + } + ] + }, + "T4": { + "instructors": [ + "Aarjoo Jaimin", + "G R Sabareesh" + ], + "sched": [ + { + "room": "G101", + "days": [ + "F" + ], + "hours": [ + 1 ] } ] } }, "compre": { - "date": "04/05", - "session": "AN" + "date": "23/05", + "session": "FN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "3.30pm-5.00pm" } }, - "MEL G632": { - "name": "Analog Ic Design", + "ME F320": { + "name": "Engineering Optimization", "sections": { "L1": { "instructors": [ - "SAROJ MONDAL" + "AMIT KUMAR GUPTA" ], "sched": [ { - "room": "I114", + "room": "F103", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 4 + 8 ] } ] }, - "P1": { + "T1": { "instructors": [ - "Saroj Mondal", - "Arun Mohan B" + "Vardhanapu Muralidhar", + "Amit Kumar Gupta" ], "sched": [ { - "room": "I124", + "room": "F203", "days": [ - "M", - "W" + "M" ], "hours": [ - 7, - 8 + 1 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "AN" - }, - "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" - } - }, - "MEL G641": { - "name": "Cad For Ic Design", - "sections": { - "L1": { + }, + "T2": { "instructors": [ - "S K CHATTERJEE" + "TO BE ANNOUNCED", + "Amit Kumar Gupta" ], "sched": [ { - "room": "I113", + "room": "F204", "days": [ - "T", - "Th", - "S" + "M" ], "hours": [ - 5 + 1 ] } ] }, - "P1": { + "T3": { "instructors": [ - "S K Chatterjee", - "Sravankumar Vittapu" + "Kolla Lakshman Rao", + "Amit Kumar Gupta" ], "sched": [ { - "room": "I124", + "room": "F201", "days": [ - "T", - "Th" + "M" ], "hours": [ - 7, - 8 + 1 + ] + } + ] + }, + "T4": { + "instructors": [ + "TO BE ANNOUNCED", + "Amit Kumar Gupta" + ], + "sched": [ + { + "room": "F202", + "days": [ + "M" + ], + "hours": [ + 1 ] } ] } }, "compre": { - "date": "08/05", - "session": "FN" + "date": "12/05", + "session": "AN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "12/03", + "time": "3.30pm-5.00pm" } }, - "MEL G642": { - "name": "Vlsi Architecture", + "ME F341": { + "name": "Primemovers & Fluid Mach", "sections": { "L1": { "instructors": [ - "SYED ERSHAD AHMED" + "JEEVAN JAIDI" ], "sched": [ { - "room": "I213", + "room": "F103", "days": [ - "T", - "Th" + "M", + "W" ], "hours": [ 9 @@ -17991,187 +15244,137 @@ }, "P1": { "instructors": [ - "Syed Ershad Ahmed", - "Anil Kumar U" + "Kandula Uday Kumar Reddy", + "Santanu Prasad Datta" ], "sched": [ { - "room": "I123", + "room": "E221", "days": [ - "T", "Th" ], "hours": [ - 2, - 3 + 9, + 10 ] } ] - } - }, - "compre": { - "date": "06/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" - } - }, - "MF F242": { - "name": "Manufacturing Management", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "AMRITHA PRIYADARSHINI" + "G Prashanth Kumar Reddy", + "Mrinal Ketan Jagirdar" ], "sched": [ { - "room": "G102", + "room": "E221", "days": [ - "M", - "W" + "T" ], "hours": [ - 9 + 9, + 10 ] } ] }, - "T1": { + "P3": { "instructors": [ - "Amritha Priyadarshini" + "Bagadi Ramana Murthy", + "Pardha Saradhi Gurugubelli" ], "sched": [ { - "room": "G102", + "room": "E221", "days": [ - "F" + "M" ], "hours": [ - 9 + 4, + 5 ] } ] - } - }, - "compre": { - "date": "11/05", - "session": "FN" - }, - "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" - } - }, - "MF F266": { - "name": "Study Project", - "sections": { - "L1": { - "instructors": [ - "R PARAMESHWARAN" - ], - "sched": [] - } - } - }, - "MF F311": { - "name": "Mechatronics & Automat", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "KUNDAN KUMAR SINGH" + "Kandula Uday Kumar Reddy", + "Jeevan Jaidi" ], "sched": [ { - "room": "G105", + "room": "G106", "days": [ - "M", - "W", "F" ], "hours": [ - 7 + 9 ] } ] }, - "P1": { + "T2": { "instructors": [ - "Kundan Kumar Singh", - "Arshad Javed" + "G Prashanth Kumar Reddy", + "Jeevan Jaidi" ], "sched": [ { - "room": "E210", + "room": "F202", "days": [ - "Th" + "F" ], "hours": [ - 8, 9 ] } ] - } - }, - "compre": { - "date": "13/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" - } - }, - "MF F341": { - "name": "Design of Machine Tools", - "sections": { - "L1": { + }, + "T3": { "instructors": [ - "RAVI SHANKER VIDYARTH" + "Bagadi Ramana Murthy", + "Mrinal Ketan Jagirdar" ], "sched": [ { - "room": "F204", + "room": "F203", "days": [ - "M", - "W", "F" ], "hours": [ - 3 + 9 ] } ] }, - "T1": { + "T4": { "instructors": [ - "Ravi Shanker Vidyarthy" + "TO BE ANNOUNCED", + "Mrinal Ketan Jagirdar" ], "sched": [ { - "room": "F204", + "room": "F103", "days": [ - "W" + "F" ], "hours": [ - 1 + 9 ] } ] } }, "compre": { - "date": "01/05", - "session": "AN" + "date": "09/05", + "session": "FN" }, "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" + "date": "11/03", + "time": "9.00am-10.30am" } }, - "MF F342": { + "ME F342": { "name": "Computer Aided Design", "sections": { "L1": { @@ -18183,25 +15386,24 @@ "room": "F103", "days": [ "T", - "Th", - "S" + "Th" ], "hours": [ - 3 + 4 ] } ] }, "P1": { "instructors": [ - "Ramayee L", - "P V Sai Divya" + "Gaurav Sharma", + "SP Regalla" ], "sched": [ { - "room": "D208 A", + "room": "D208", "days": [ - "M" + "F" ], "hours": [ 4, @@ -18212,12 +15414,12 @@ }, "P2": { "instructors": [ - "Ramayee L", - "Veeraiahgari Vamshi" + "Suswanth Poluru", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "D208 A", + "room": "D208", "days": [ "W" ], @@ -18230,32 +15432,31 @@ }, "P3": { "instructors": [ - "Veeraiahgari Vamshi", - "P V Sai Divya" + "TO BE ANNOUNCED" ], "sched": [ { - "room": "D208 A", + "room": "D208", "days": [ - "Th" + "T" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] }, "T1": { "instructors": [ - "SP Regalla", - "TO BE ANNOUNCED" + "Veeraiahgari Vamshi", + "SP Regalla" ], "sched": [ { - "room": "G101", + "room": "F203", "days": [ - "F" + "W" ], "hours": [ 1 @@ -18265,14 +15466,14 @@ }, "T2": { "instructors": [ - "Hemanth Mithun Praveen", + "Gaurav Sharma", "SP Regalla" ], "sched": [ { - "room": "G103", + "room": "F204", "days": [ - "F" + "W" ], "hours": [ 1 @@ -18282,14 +15483,31 @@ }, "T3": { "instructors": [ - "Lanka Tata Rao", + "Suswanth Poluru", + "SP Regalla" + ], + "sched": [ + { + "room": "G102", + "days": [ + "W" + ], + "hours": [ + 1 + ] + } + ] + }, + "T4": { + "instructors": [ + "Gudlavalleti Deepak Kumar", "SP Regalla" ], "sched": [ { - "room": "G104", + "room": "G101", "days": [ - "F" + "W" ], "hours": [ 1 @@ -18299,61 +15517,97 @@ } }, "compre": { - "date": "06/05", + "date": "18/05", "session": "AN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "3.30pm-5.00pm" } }, - "MF F343": { - "name": "Casting & Welding", + "ME F343": { + "name": "Mechanical Vibrations", "sections": { "L1": { "instructors": [ - "SUJITH R" + "G R SABAREESH", + "Arshad Javed" ], "sched": [ { - "room": "F204", + "room": "F103", "days": [ "T", "Th", "S" ], "hours": [ - 2 + 5 ] } ] }, - "P1": { + "T1": { "instructors": [ - "Pavandatta Jadhav" + "Kalyani Panigrahi", + "G R Sabareesh" ], "sched": [ { - "room": "WS", + "room": "F202", "days": [ - "Th" + "F" ], "hours": [ - 7, - 8 + 1 ] } ] }, - "T1": { + "T2": { + "instructors": [ + "Pichika S V V S Narayana", + "G R Sabareesh" + ], + "sched": [ + { + "room": "F203", + "days": [ + "F" + ], + "hours": [ + 1 + ] + } + ] + }, + "T3": { "instructors": [ - "Sujith R" + "Shaik Ayub Mohiddin", + "G R Sabareesh" ], "sched": [ { "room": "F204", "days": [ - "M" + "F" + ], + "hours": [ + 1 + ] + } + ] + }, + "T4": { + "instructors": [ + "Aarjoo Jaimin", + "G R Sabareesh" + ], + "sched": [ + { + "room": "G101", + "days": [ + "F" ], "hours": [ 1 @@ -18363,15 +15617,15 @@ } }, "compre": { - "date": "04/05", - "session": "AN" + "date": "23/05", + "session": "FN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "3.30pm-5.00pm" } }, - "MF F344": { + "ME F344": { "name": "Engineering Optimization", "sections": { "L1": { @@ -18380,328 +15634,452 @@ ], "sched": [ { - "room": "F104", + "room": "F103", "days": [ "M", - "W" + "W", + "F" ], "hours": [ - 2 + 8 ] } ] }, "T1": { "instructors": [ - "Vardhanapu Muralidhar", + "Vardhanapu Muralidhar", "Amit Kumar Gupta" ], "sched": [ { - "room": "G201", + "room": "F203", "days": [ - "F" + "M" ], "hours": [ - 2 + 1 ] } ] }, "T2": { "instructors": [ - "V Venkateswara Rao", + "TO BE ANNOUNCED", "Amit Kumar Gupta" ], "sched": [ { - "room": "G202", + "room": "F204", "days": [ - "F" + "M" ], "hours": [ - 2 + 1 ] } ] }, "T3": { "instructors": [ - "Deepak Nabapure", + "Kolla Lakshman Rao", "Amit Kumar Gupta" ], "sched": [ { - "room": "G204", + "room": "F201", "days": [ - "F" + "M" ], "hours": [ - 2 + 1 + ] + } + ] + }, + "T4": { + "instructors": [ + "TO BE ANNOUNCED", + "Amit Kumar Gupta" + ], + "sched": [ + { + "room": "F202", + "days": [ + "M" + ], + "hours": [ + 1 ] } ] } }, "compre": { - "date": "09/05", + "date": "12/05", "session": "AN" }, "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" + "date": "12/03", + "time": "3.30pm-5.00pm" } }, - "MF F366": { + "ME F366": { "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "RAVI SHANKER VIDYARTH" + "PAVAN KUMAR P" ], "sched": [] } } }, - "MF F367": { + "ME F367": { "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "RAVI SHANKER VIDYARTH" + "PAVAN KUMAR P" ], "sched": [] } } }, - "MF F376": { + "ME F376": { "name": "Design Project", "sections": { "L1": { "instructors": [ - "BRAJESH KUMAR PANIGR" + "RAVI SHANKER VIDYARTH" ], "sched": [] } } }, - "MF F377": { + "ME F377": { "name": "Design Project", "sections": { "L1": { "instructors": [ - "BRAJESH KUMAR PANIGR" + "RAVI SHANKER VIDYARTH" ], "sched": [] } } }, - "MF F418": { - "name": "Lean Manufacturing", + "ME F423": { + "name": "Micro-fluidics & its App", "sections": { "L1": { "instructors": [ - "AMIT KUMAR GUPTA" + "SATISH K DUBEY", + "Sanket Goel" ], "sched": [ { - "room": "G105", + "room": "G206", + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 3 + ] + } + ] + }, + "P1": { + "instructors": [ + "Satish K Dubey", + "Sangam Srikanth" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "Th" + ], + "hours": [ + 8, + 9 + ] + } + ] + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "ME F424": { + "name": "Energy Management", + "sections": { + "L1": { + "instructors": [ + "S S DESHMUKH" + ], + "sched": [ + { + "room": "G104", "days": [ "T", "Th", "S" ], "hours": [ - 4 + 3 ] } ] } }, "compre": { - "date": "12/05", + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "ME F484": { + "name": "Automotive Technology", + "sections": { + "L1": { + "instructors": [ + "SUPRADEEPAN K" + ], + "sched": [ + { + "room": "G107", + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 2 + ] + } + ] + } + }, + "compre": { + "date": "11/05", "session": "FN" }, "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" + "date": "12/03", + "time": "9.00am-10.30am" } }, - "MF F421": { - "name": "Supply Chain Management", + "ME G512": { + "name": "Finite Element Method", + "sections": { + "L1": { + "instructors": [ + "PARDHA SARADHI GURUG" + ], + "sched": [ + { + "room": "G205", + "days": [ + "T", + "Th", + "S" + ], + "hours": [ + 2 + ] + } + ] + }, + "P1": { + "instructors": [ + "Pardha Saradhi Gurugubelli" + ], + "sched": [ + { + "room": "D208", + "days": [ + "W", + "F" + ], + "hours": [ + 6, + 7 + ] + } + ] + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "ME G515": { + "name": "Comput Fluid Dynamics", "sections": { "L1": { "instructors": [ - "C P KIRAN" + "KRC MURTHY" ], "sched": [ { - "room": "G107", + "room": "G105", "days": [ "T", "Th", "S" ], "hours": [ - 5 + 2 ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "MF F485": { - "name": "Sustainable Manufacturing", - "sections": { - "L1": { + }, + "P1": { "instructors": [ - "KUNDAN KUMAR SINGH" + "KRC Murthy", + "Supradeepan K" ], "sched": [ { - "room": "G107", + "room": "D208", "days": [ "T", - "Th", - "S" + "Th" ], "hours": [ - 4 + 6, + 7 ] } ] } }, "compre": { - "date": "12/05", + "date": "17/05", "session": "FN" }, "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "9.00am-10.30am" } }, - "MGTS F211": { - "name": "Principles of Management", + "ME G539": { + "name": "Comp Integrated Manufact", "sections": { "L1": { "instructors": [ - "SWATI ALOK" + "KURRA SURESH" ], "sched": [ { - "room": "F106", + "room": "F201", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 9 + 2 ] } ] }, - "T1": { + "P1": { "instructors": [ - "Swati Alok", - "Rajthilak R" + "Kurra Suresh", + "Wankhede Pankaj Rambhau" ], "sched": [ { - "room": "F106", + "room": "LAB", "days": [ "F" ], "hours": [ - 1 + 6, + 7 ] } ] - } - }, - "compre": { - "date": "05/05", - "session": "FN" - }, - "midsem": { - "date": "3/3", - "time": "1.30 -3.00 PM" - } - }, - "MST F332": { - "name": "Materials Processing", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "SUJITH R", - "Ramesh Babu A" + "Kurra Suresh", + "Wankhede Pankaj Rambhau" ], "sched": [ { - "room": "G207", + "room": "LAB", "days": [ - "M", - "W", - "F" + "S" ], "hours": [ - 9 + 4, + 5 ] } ] } }, "compre": { - "date": "11/05", - "session": "FN" + "date": "10/05", + "session": "AN" }, "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" + "date": "11/03", + "time": "3.30pm-5.00pm" } }, - "MST G522": { - "name": "Advanced Composites", + "ME G611": { + "name": "Comp Aided Anal & Design", "sections": { "L1": { "instructors": [ - "PAVAN KUMAR P" + "KURRA SURESH" ], "sched": [ { - "room": "F203", + "room": "G202", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 2 + 4 ] } ] }, "P1": { "instructors": [ - "Pavan Kumar P" + "Kurra Suresh" ], "sched": [ { - "room": "E002", + "room": "D208", "days": [ "M", "W" ], "hours": [ + 8, 9, 10 ] @@ -18710,84 +16088,66 @@ } }, "compre": { - "date": "04/05", - "session": "AN" + "date": "10/05", + "session": "FN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "11/03", + "time": "1.30pm-3.00pm" } }, - "PHA F212": { - "name": "Dispensing Pharmacy", + "ME G631": { + "name": "Advanced Heat Transfer", "sections": { "L1": { "instructors": [ - "D SRIRAM", - "V V Krishna Venuganti" + "SANTANU PRASAD DATTA" ], "sched": [ { - "room": "G101", + "room": "G206", "days": [ - "M", - "W" + "T", + "Th", + "S" ], "hours": [ - 2 + 3 ] } ] }, "P1": { "instructors": [ - "D Sriram", - "Leela Sai Lokesh Janardhan", - "Ridahunlang Nongkhlaw" + "Santanu Prasad Datta", + "N Jalaiah" ], "sched": [ { - "room": "B212", + "room": "E111", "days": [ - "M" + "F" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] }, "P2": { "instructors": [ - "V V Krishna Venuganti", - "Anjali Gangwar", - "Girdhari Roy" - ], - "sched": [ - { - "room": "B212", - "days": [ - "W" - ], - "hours": [ - 7, - 8 - ] - } - ] - }, - "T1": { - "instructors": [ - "D Sriram" + "Santanu Prasad Datta", + "N Jalaiah" ], "sched": [ { - "room": "G101", + "room": "E111", "days": [ - "F" + "M" ], "hours": [ + 1, 2 ] } @@ -18795,27 +16155,28 @@ } }, "compre": { - "date": "09/05", - "session": "AN" + "date": "20/05", + "session": "FN" }, "midsem": { - "date": "7/3", - "time": "3.30 - 5.00 PM" + "date": "16/03", + "time": "1.30pm-3.00pm" } }, - "PHA F214": { - "name": "Anatomy Physio & Hygiene", + "MEL G623": { + "name": "Advanced Vlsi Design", "sections": { "L1": { "instructors": [ - "ARTI DHAR" + "SURYA SHANKAR DAN" ], "sched": [ { - "room": "G104", + "room": "I113", "days": [ "T", - "Th" + "Th", + "S" ], "hours": [ 2 @@ -18825,137 +16186,118 @@ }, "P1": { "instructors": [ - "Arti Dhar", - "D Deepika", - "Jaspreet Kaur Kalra" + "Surya Shankar Dan", + "Soumi Saha" ], "sched": [ { - "room": "A009", + "room": "LAB", "days": [ - "M" + "M", + "W" ], "hours": [ - 7, - 8 + 6, + 7 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "12/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "1.30pm-3.00pm" + } + }, + "MEL G632": { + "name": "Analog Ic Design", + "sections": { + "L1": { "instructors": [ - "Arti Dhar", - "Ashutosh Balasaheb Mahale", - "M Suresh Babu" + "PARIKSHIT PARSHURAM S" ], "sched": [ { - "room": "A009", + "room": "I114", "days": [ + "M", + "W", "F" ], "hours": [ - 7, - 8 + 3 ] } ] }, - "T1": { + "P1": { "instructors": [ - "Arti Dhar" + "Arun Mohan B", + "Parikshit Parshuram Sahatiy" ], "sched": [ { - "room": "G104", + "room": "LAB", "days": [ - "S" + "Th", + "F" ], "hours": [ - 2 + 8, + 9 ] } ] } }, "compre": { - "date": "06/05", - "session": "AN" + "date": "07/05", + "session": "FN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "10/03", + "time": "1.30pm-3.00pm" } }, - "PHA F241": { - "name": "Pharmaceutical Chemistry", + "MEL G641": { + "name": "Cad For Ic Design", "sections": { "L1": { "instructors": [ - "D SRIRAM" + "S K CHATTERJEE" ], "sched": [ { - "room": "G101", + "room": "I114", "days": [ "M", - "W" + "W", + "F" ], "hours": [ - 5 + 4 ] } ] }, "P1": { "instructors": [ - "D Sriram", - "Dasugari Varakala Saiprasad", - "Lavanya S" - ], - "sched": [ - { - "room": "A025", - "days": [ - "T" - ], - "hours": [ - 2, - 3 - ] - } - ] - }, - "P2": { - "instructors": [ - "D Sriram", - "Srashti Gopal Goyal", - "Sravani Pulya" + "S K Chatterjee", + "TO BE ANNOUNCED" ], "sched": [ { - "room": "A025", + "room": "LAB", "days": [ + "T", "Th" ], "hours": [ - 7, - 8 - ] - } - ] - }, - "T1": { - "instructors": [ - "D Sriram" - ], - "sched": [ - { - "room": "G101", - "days": [ - "F" - ], - "hours": [ + 4, 5 ] } @@ -18963,179 +16305,260 @@ } }, "compre": { - "date": "14/05", + "date": "10/05", "session": "FN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" + "date": "11/03", + "time": "1.30pm-3.00pm" } }, - "PHA F242": { - "name": "Biological Chemistry", + "MEL G642": { + "name": "Vlsi Architecture", "sections": { "L1": { "instructors": [ - "BALRAM GHOSH" + "S GURUNARAYANAN" ], "sched": [ { - "room": "G101", + "room": "I112", "days": [ - "T", - "Th" + "M", + "W", + "F" ], "hours": [ - 5 + 2 ] } ] }, "P1": { "instructors": [ - "Balram Ghosh", - "Pravesh Sharma", - "Yamini Shankar Bobde" + "S Gurunarayanan", + "G Sahith" ], "sched": [ { - "room": "A024", + "room": "LAB", "days": [ - "Th" + "M" ], "hours": [ - 2, - 3 + 8, + 9 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "14/05", + "session": "FN" + }, + "midsem": { + "date": "14/03", + "time": "3.30pm-5.00pm" + } + }, + "MF F266": { + "name": "Study Project", + "sections": { + "L1": { "instructors": [ - "Balram Ghosh", - "E Madhu Rekha" + "ABHISHEK SARKAR" + ], + "sched": [] + } + } + }, + "MF F311": { + "name": "Mechatronics & Automat", + "sections": { + "L1": { + "instructors": [ + "ARSHAD JAVED" ], "sched": [ { - "room": "A024", + "room": "G204", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 7, - 8 + 3 ] } ] }, - "T1": { + "P1": { "instructors": [ - "Balram Ghosh" + "Arshad Javed", + "Kundan Kumar Singh" ], "sched": [ { - "room": "G101", + "room": "E210", "days": [ - "S" + "Th" ], "hours": [ - 5 + 8, + 9 ] } ] } }, "compre": { - "date": "08/05", - "session": "FN" + "date": "06/05", + "session": "AN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "10/03", + "time": "11.00am-12.30pm" } }, - "PHA F266": { - "name": "Study Project", + "MF F366": { + "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "NIRMAL J" + "PAVAN KUMAR P" ], "sched": [] } } }, - "PHA F313": { - "name": "Instru Methods of Anal", + "MF F367": { + "name": "Laboratory Project", "sections": { "L1": { "instructors": [ - "A SAJELI BEGUM" + "PAVAN KUMAR P" + ], + "sched": [] + } + } + }, + "MF F376": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "RAVI SHANKER VIDYARTH" + ], + "sched": [] + } + } + }, + "MF F377": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "RAVI SHANKER VIDYARTH" + ], + "sched": [] + } + } + }, + "MF F421": { + "name": "Supply Chain Management", + "sections": { + "L1": { + "instructors": [ + "C P KIRAN" ], "sched": [ { - "room": "G101", + "room": "G108", "days": [ - "T", - "Th" + "M", + "W", + "F" ], "hours": [ - 4 + 7 ] } ] - }, - "P1": { + } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" + } + }, + "MF F485": { + "name": "Sustainable Manufacturing", + "sections": { + "L1": { "instructors": [ - "A Sajeli Begum", - "Ch Sai Sanjay", - "Pragya Paramita Pal", - "S Kavitha" + "KUNDAN KUMAR SINGH" ], "sched": [ { - "room": "B108", + "room": "G105", "days": [ - "W" + "T", + "Th", + "S" ], "hours": [ - 7, - 8, - 9 + 3 ] } ] - }, - "P2": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "MGTS F211": { + "name": "Principles of Management", + "sections": { + "L1": { "instructors": [ - "A Sajeli Begum", - "Deepanjan Datta", - "Mohd Shareef Khan", - "Purbali Chakraborty" + "SWATI ALOK" ], "sched": [ { - "room": "B108", + "room": "F108", "days": [ - "S" + "M", + "W", + "F" ], "hours": [ - 2, - 3, - 4 + 6 ] } ] }, "T1": { "instructors": [ - "A Sajeli Begum" + "Swati Alok", + "Navya Kumar" ], "sched": [ { - "room": "G101", + "room": "F108", "days": [ - "Th" + "S" ], "hours": [ 1 @@ -19145,109 +16568,146 @@ } }, "compre": { - "date": "12/05", + "date": "13/05", "session": "AN" }, "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" + "date": "14/03", + "time": "1.30pm-3.00pm" } }, - "PHA F341": { - "name": "Pharmacology II", + "MSE G511": { + "name": "Mechatronics", "sections": { "L1": { "instructors": [ - "ONKAR KULKARNI" + "ARSHAD JAVED" ], "sched": [ { - "room": "G102", + "room": "G204", "days": [ - "T", - "Th" + "M", + "W", + "F" ], "hours": [ - 2 + 3 ] } ] }, "P1": { "instructors": [ - "Onkar Kulkarni", - "K Kalyani" + "Arshad Javed", + "Kundan Kumar Singh" ], "sched": [ { - "room": "D208 C", + "room": "E210", "days": [ - "M" + "Th", + "F" ], "hours": [ - 4, - 5 + 8, + 9 ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "MSE G512": { + "name": "Manufact Planning & Cont", + "sections": { + "L1": { "instructors": [ - "Onkar Kulkarni" + "AMRITHA PRIYADARSHINI" ], "sched": [ { - "room": "G102", + "room": "G206", "days": [ + "M", + "W", "F" ], "hours": [ - 1 + 4 + ] + } + ] + }, + "P1": { + "instructors": [ + "Sreejith S", + "Amritha Priyadarshini" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "M", + "W" + ], + "hours": [ + 8, + 9 ] } ] } }, "compre": { - "date": "04/05", - "session": "AN" + "date": "20/05", + "session": "FN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "1.30pm-3.00pm" } }, - "PHA F342": { - "name": "Medicinal Chemistry II", + "MSE G531": { + "name": "Concurrent Engineering", "sections": { "L1": { "instructors": [ - "P YOGEESWARI" + "PIYUSH CHANDRA VERMA" ], "sched": [ { - "room": "G102", + "room": "G202", "days": [ - "T", - "Th" + "M", + "W", + "F" ], "hours": [ - 3 + 5 ] } ] }, "P1": { "instructors": [ - "P Yogeeswari", - "B Sony Priyanka", - "Routholla Ganesh" + "Piyush Chandra Verma", + "Ashish Saurabh" ], "sched": [ { - "room": "A025", + "room": "LAB", "days": [ - "W" + "T", + "Th" ], "hours": [ 4, @@ -19255,92 +16715,111 @@ ] } ] - }, - "T1": { + } + }, + "compre": { + "date": "12/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "1.30pm-3.00pm" + } + }, + "MST F332": { + "name": "Materials Processing", + "sections": { + "L1": { "instructors": [ - "P Yogeeswari" + "KARTHIK CHETAN", + "Prabakaran Saravanan" ], "sched": [ { - "room": "G102", + "room": "F203", "days": [ - "W" + "T", + "Th", + "S" ], "hours": [ - 1 + 3 ] } ] } }, "compre": { - "date": "06/05", + "date": "19/05", "session": "AN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "16/03", + "time": "11.00am-12.30pm" } }, - "PHA F343": { - "name": "Forensic Pharmacy", + "MST G522": { + "name": "Advanced Composites", "sections": { "L1": { "instructors": [ - "BALRAM GHOSH" + "PAVAN KUMAR P" ], "sched": [ { - "room": "G102", + "room": "G207", "days": [ + "M", "W", "F" ], "hours": [ - 8 + 2 ] } ] }, - "T1": { + "P1": { "instructors": [ - "Balram Ghosh" + "Pavan Kumar P" ], "sched": [ { - "room": "G102", + "room": "E002", "days": [ - "M" + "T", + "Th" ], "hours": [ - 1 + 4, + 5 ] } ] } }, "compre": { - "date": "14/05", - "session": "AN" + "date": "20/05", + "session": "FN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "1.30pm-3.00pm" } }, - "PHA F344": { - "name": "Natural Drugs", + "PHA F241": { + "name": "Pharmaceutical Chemistry", "sections": { "L1": { "instructors": [ - "A SAJELI BEGUM" + "D SRIRAM" ], "sched": [ { - "room": "G102", + "room": "G203", "days": [ - "M", - "W" + "T", + "Th" ], "hours": [ 3 @@ -19350,32 +16829,33 @@ }, "P1": { "instructors": [ - "A Sajeli Begum", - "Kirti", - "Samrun Nessa" + "D Sriram", + "Routholla Ganesh", + "Srashti Gopal Goyal", + "Sravani Pulya" ], "sched": [ { - "room": "A009", + "room": "LAB", "days": [ - "Th" + "M" ], "hours": [ - 7, - 8 + 8, + 9 ] } ] }, "T1": { "instructors": [ - "A Sajeli Begum" + "D Sriram" ], "sched": [ { - "room": "G102", + "room": "G203", "days": [ - "F" + "S" ], "hours": [ 3 @@ -19385,288 +16865,254 @@ } }, "compre": { - "date": "01/05", - "session": "AN" + "date": "19/05", + "session": "FN" }, "midsem": { - "date": "2/3", - "time": "11.00 -12.30 PM" - } - }, - "PHA F366": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "NIRMAL J" - ], - "sched": [] - } - } - }, - "PHA F367": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "NIRMAL J" - ], - "sched": [] - } - } - }, - "PHA F376": { - "name": "Design Project", - "sections": { - "L1": { - "instructors": [ - "NIRMAL J" - ], - "sched": [] - } + "date": "16/03", + "time": "9.00am-10.30am" } }, - "PHA F377": { - "name": "Design Project", + "PHA F242": { + "name": "Biological Chemistry", "sections": { "L1": { "instructors": [ - "NIRMAL J" + "BALRAM GHOSH" ], - "sched": [] - } - } - }, - "PHA F413": { - "name": "Pharma Mang & Qual Contr", - "sections": { - "L1": { + "sched": [ + { + "room": "G203", + "days": [ + "M", + "W" + ], + "hours": [ + 2 + ] + } + ] + }, + "P1": { "instructors": [ - "V V KRISHNA VENUGANTI" + "Balram Ghosh", + "Aparajita Ghosh", + "Pravesh Sharma", + "Tarun" ], "sched": [ { - "room": "G102", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 4 + 8, + 9 ] } ] - } - }, - "compre": { - "date": "12/05", - "session": "FN" - }, - "midsem": { - "date": "6/3", - "time": "9.00 - 10.30AM" - } - }, - "PHA F414": { - "name": "Biopharmaceutics", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "NIRMAL J" + "Balram Ghosh", + "Aparajita Ghosh", + "Pravesh Sharma", + "Tarun" ], "sched": [ { - "room": "G102", + "room": "LAB", "days": [ - "T", - "Th", - "S" + "W" ], "hours": [ - 5 + 8, + 9 ] } ] - } - }, - "compre": { - "date": "08/05", - "session": "AN" - }, - "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" - } - }, - "PHA G546": { - "name": "Pharmaceutical Bio Statistics", - "sections": { - "L1": { + }, + "T1": { "instructors": [ - "R PUNNA RAO" + "Balram Ghosh" ], "sched": [ { - "room": "F101", + "room": "G203", "days": [ - "T", - "Th", - "S" + "F" ], "hours": [ - 3 + 2 ] } ] } }, "compre": { - "date": "06/05", + "date": "11/05", "session": "AN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, - "PHA G613": { - "name": "Pharmaceutical Biotech", + "PHA F266": { + "name": "Study Project", "sections": { "L1": { "instructors": [ - "NIRMAL J" + "SRINIVAS PRASAD K" + ], + "sched": [] + } + } + }, + "PHA F313": { + "name": "Instru Methods of Anal", + "sections": { + "L1": { + "instructors": [ + "A SAJELI BEGUM" ], "sched": [ { - "room": "G102", + "room": "G201", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 4 + 2 ] } ] }, "P1": { "instructors": [ - "Nirmal J", - "Raghuraman Manimaran" + "A Sajeli Begum", + "B Sony Priyanka", + "Ch Sai Sanjay", + "Pragya Paramita Pal", + "Shreya Shashank Chauhan", + "Velmurugan K" ], "sched": [ { - "room": "B212", + "room": "LAB", "days": [ "T" ], "hours": [ 7, 8, - 9, - 10 + 9 ] } ] - } - }, - "compre": { - "date": "02/05", - "session": "FN" - }, - "midsem": { - "date": "2/3", - "time": "1.30 -3.00 PM" - } - }, - "PHA G616": { - "name": "Pharma Admin & Management", - "sections": { - "L1": { + }, + "P2": { "instructors": [ - "AKASH C" + "A Sajeli Begum", + "Ch Sai Sanjay", + "Deepanjan Datta", + "Pragya Paramita Pal", + "Shreya Shashank Chauhan", + "Velmurugan K" ], "sched": [ { - "room": "G102", + "room": "LAB", "days": [ - "M", - "W", - "F" + "Th" ], "hours": [ - 5 + 7, + 8, + 9 ] } ] }, - "P1": { + "T1": { "instructors": [ - "Akash C", - "Parameswar Patra" + "A Sajeli Begum" ], "sched": [ { - "room": "B212", + "room": "G203", "days": [ - "T", - "Th" + "F" ], "hours": [ - 4, - 5 + 1 ] } ] } }, "compre": { - "date": "09/05", + "date": "17/05", "session": "AN" }, "midsem": { - "date": "5/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "11.00am-12.30pm" } }, - "PHA G632": { - "name": "Dosage Form Design", + "PHA F341": { + "name": "Pharmacology II", "sections": { "L1": { "instructors": [ - "R PUNNA RAO" + "ONKAR KULKARNI" ], "sched": [ { - "room": "G103", + "room": "G204", "days": [ "M", - "W", - "F" + "W" ], "hours": [ - 3 + 9 ] } ] }, "P1": { "instructors": [ - "R Punna Rao", - "Avantika Dalvi", - "Chandra Teja Uppuluri" + "S Kavitha", + "Lavanya S", + "Onkar Kulkarni" ], "sched": [ { - "room": "A022", + "room": "LAB", "days": [ - "M", - "W" + "M" + ], + "hours": [ + 4, + 5 + ] + } + ] + }, + "T1": { + "instructors": [ + "Onkar Kulkarni" + ], + "sched": [ + { + "room": "G204", + "days": [ + "F" ], "hours": [ - 8, 9 ] } @@ -19674,54 +17120,43 @@ } }, "compre": { - "date": "04/05", - "session": "AN" + "date": "09/05", + "session": "FN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" - } - }, - "PHA G642": { - "name": "Laboratory Project", - "sections": { - "L1": { - "instructors": [ - "SWATI BISWAS" - ], - "sched": [] - } + "date": "11/03", + "time": "9.00am-10.30am" } }, - "PHY F110": { - "name": "Physics Laboratory", + "PHA F342": { + "name": "Medicinal Chemistry II", "sections": { "L1": { "instructors": [ - "Kannan Ramaswamy", - "Haridev S R" + "P YOGEESWARI" ], "sched": [ { - "room": "A222", + "room": "G204", "days": [ - "M" + "M", + "W" ], "hours": [ - 4, - 5 + 8 ] } ] }, - "L2": { + "P1": { "instructors": [ - "Kannan Ramaswamy", - "T Vicky Singh" + "P Yogeeswari", + "D Deepika", + "Purbali Chakraborty" ], "sched": [ { - "room": "A222", + "room": "LAB", "days": [ "W" ], @@ -19732,124 +17167,150 @@ } ] }, - "L3": { + "P2": { "instructors": [ - "PRASANT SAMANTRAY", - "Nobleson K" + "P Yogeeswari", + "Dipika Rani Sahu", + "Purbali Chakraborty" ], "sched": [ { - "room": "A222", + "room": "LAB", "days": [ - "M" + "F" ], "hours": [ - 7, - 8 + 4, + 5 ] } ] }, - "L4": { + "T1": { "instructors": [ - "Prasant Samantray", - "Rahul Kumar Thakur" + "P Yogeeswari" ], "sched": [ { - "room": "A222", + "room": "G204", "days": [ "F" ], "hours": [ - 7, 8 ] } ] - }, - "L5": { + } + }, + "compre": { + "date": "12/05", + "session": "AN" + }, + "midsem": { + "date": "12/03", + "time": "3.30pm-5.00pm" + } + }, + "PHA F343": { + "name": "Forensic Pharmacy", + "sections": { + "L1": { "instructors": [ - "Asrarul Haque", - "Sajia Yeasmin" + "BALRAM GHOSH" ], "sched": [ { - "room": "A222", + "room": "G204", "days": [ - "T" + "T", + "Th" ], "hours": [ - 4, - 5 + 4 ] } ] }, - "L6": { + "T1": { "instructors": [ - "Asrarul Haque", - "Yuganand Nellambakam" + "Balram Ghosh", + "Abhijeet Rajendra Joshi" ], "sched": [ { - "room": "A222", + "room": "G204", "days": [ - "Th" + "S" ], "hours": [ - 4, - 5 + 4 ] } ] - }, - "L7": { + } + }, + "compre": { + "date": "18/05", + "session": "AN" + }, + "midsem": { + "date": "15/03", + "time": "3.30pm-5.00pm" + } + }, + "PHA F344": { + "name": "Natural Drugs", + "sections": { + "L1": { "instructors": [ - "Souri Banerjee", - "Surabhi Yadav" + "A SAJELI BEGUM" ], "sched": [ { - "room": "A222", + "room": "G204", "days": [ - "F" + "T", + "Th" ], "hours": [ - 4, 5 ] } ] }, - "L8": { + "P1": { "instructors": [ - "Rahul Nigam", - "Waseem Ahmad Wani" + "A Sajeli Begum", + "Bollareddy Srivarsha Reddy", + "P. S Lakshmi Soukya", + "Samrun Nessa" ], "sched": [ { - "room": "A222", + "room": "LAB", "days": [ "W" ], "hours": [ - 7, - 8 + 4, + 5 ] } ] }, - "L9": { + "P2": { "instructors": [ - "Sarmistha Banik", - "Ronit Mahapatra" + "A Sajeli Begum", + "Bollareddy Srivarsha Reddy", + "P. S Lakshmi Soukya", + "Samrun Nessa" ], "sched": [ { - "room": "A222", + "room": "LAB", "days": [ - "S" + "F" ], "hours": [ 4, @@ -19858,294 +17319,397 @@ } ] }, - "L10": { + "T1": { "instructors": [ - "Sarmistha Banik", - "Nobleson K" + "A Sajeli Begum" ], "sched": [ { - "room": "A222", + "room": "G204", "days": [ - "T" + "S" ], "hours": [ - 7, - 8 + 5 ] } ] - }, - "L11": { + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "PHA F366": { + "name": "Laboratory Project", + "sections": { + "L1": { "instructors": [ - "Rahul Nigam", - "Sabur Ahmed Barbhuiya" + "SRINIVAS PRASAD K" ], - "sched": [ - { - "room": "A222", - "days": [ - "Th" - ], - "hours": [ - 7, - 8 - ] - } - ] + "sched": [] + } + } + }, + "PHA F367": { + "name": "Laboratory Project", + "sections": { + "L1": { + "instructors": [ + "SRINIVAS PRASAD K" + ], + "sched": [] + } + } + }, + "PHA F376": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "SRINIVAS PRASAD K" + ], + "sched": [] + } + } + }, + "PHA F377": { + "name": "Design Project", + "sections": { + "L1": { + "instructors": [ + "SRINIVAS PRASAD K" + ], + "sched": [] } - }, - "compre": { - "date": "15/05", - "session": "FN" - }, - "midsem": { - "date": "7/3", - "time": "1.30 -3.00 PM" } }, - "PHY F111": { - "name": "Mech Oscil & Waves", + "PHA F413": { + "name": "Pharma Mang & Qual Contr", "sections": { "L1": { "instructors": [ - "K V Shiv Chaitanya" + "V V KRISHNA VENUGANTI" ], "sched": [ { - "room": "F105", + "room": "G204", "days": [ "T", "Th", "S" ], "hours": [ - 1 + 3 ] } ] - }, - "L2": { + } + }, + "compre": { + "date": "19/05", + "session": "AN" + }, + "midsem": { + "date": "16/03", + "time": "11.00am-12.30pm" + } + }, + "PHA F414": { + "name": "Biopharmaceutics", + "sections": { + "L1": { "instructors": [ - "VSN Murthy" + "NIRMAL J" ], "sched": [ { - "room": "F104", + "room": "G204", "days": [ "T", "Th", "S" ], "hours": [ - 1 - ] - } - ] - }, - "T1": { - "instructors": [ - "PK THIRUVIKRAMAN" - ], - "sched": [ - { - "room": "G201", - "days": [ - "T", - "Th" - ], - "hours": [ - 3 + 2 ] } ] - }, - "T2": { + } + }, + "compre": { + "date": "06/05", + "session": "AN" + }, + "midsem": { + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "PHA F417": { + "name": "Pharmacoeconomics", + "sections": { + "L1": { "instructors": [ - "PK Thiruvikraman" + "ABHIJEET RAJENDRA JOS" ], "sched": [ { - "room": "G201", + "room": "F101", "days": [ + "M", + "W", "F" ], "hours": [ - 1 + 7 ] } ] - }, - "T3": { + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "TBA", + "time": "TBA" + } + }, + "PHA F491": { + "name": "Special Project", + "sections": { + "L1": { "instructors": [ - "Sashideep Gutti" + "SRINIVAS PRASAD K" ], - "sched": [ - { - "room": "G202", - "days": [ - "T", - "Th" - ], - "hours": [ - 3 - ] - } - ] - }, - "T4": { + "sched": [] + } + } + }, + "PHA G532": { + "name": "Q A & Regulatory Affairs", + "sections": { + "L1": { "instructors": [ - "Sashideep Gutti" + "AKASH C" ], "sched": [ { - "room": "G202", + "room": "G203", "days": [ + "M", + "W", "F" ], "hours": [ - 1 + 5 ] } ] }, - "T6": { + "P1": { "instructors": [ - "Prasant Samantray" + "Panchal Kanan Jayesh Pann", + "Akash C", + "Parameswar Patra" ], "sched": [ { - "room": "G203", + "room": "LAB", "days": [ "F" ], "hours": [ - 1 + 7, + 8, + 9, + 10 ] } ] - }, - "T5": { + } + }, + "compre": { + "date": "07/05", + "session": "FN" + }, + "midsem": { + "date": "10/03", + "time": "1.30pm-3.00pm" + } + }, + "PHA G543": { + "name": "Clinical Research", + "sections": { + "L1": { "instructors": [ - "Prasant Samantray" + "ARTI DHAR" ], "sched": [ { "room": "G203", "days": [ "T", - "Th" - ], - "hours": [ - 3 - ] - } - ] - }, - "T9": { - "instructors": [ - "Prasant Samantray" - ], - "sched": [ - { - "room": "G203", - "days": [ + "Th", "S" ], "hours": [ - 3 + 4 ] } ] - }, - "T7": { + } + }, + "compre": { + "date": "10/05", + "session": "AN" + }, + "midsem": { + "date": "11/03", + "time": "3.30pm-5.00pm" + } + }, + "PHA G546": { + "name": "Pharmaceutical Bio Statistics", + "sections": { + "L1": { "instructors": [ - "Swastik Bhattacharya" + "R PUNNA RAO" ], "sched": [ { - "room": "G204", + "room": "G205", "days": [ "T", - "Th" + "Th", + "S" ], "hours": [ 3 ] } ] - }, - "T8": { + } + }, + "compre": { + "date": "12/05", + "session": "FN" + }, + "midsem": { + "date": "12/03", + "time": "1.30pm-3.00pm" + } + }, + "PHA G613": { + "name": "Pharmaceutical Biotech", + "sections": { + "L1": { "instructors": [ - "Swastik Bhattacharya" + "NIRMAL J" ], "sched": [ { - "room": "G204", + "room": "G205", "days": [ + "M", + "W", "F" ], "hours": [ - 1 + 3 ] } ] }, - "T12": { + "P1": { "instructors": [ - "Swastik Bhattacharya" + "Shubham Prakash Debaje", + "Nirmal J", + "Manisha Malani", + "Raghuraman Manimaran" ], "sched": [ { - "room": "G204", + "room": "LAB", "days": [ - "S" + "W" ], "hours": [ - 3 + 7, + 8, + 9, + 10 ] } ] } }, "compre": { - "date": "04/05", + "date": "18/05", "session": "FN" }, "midsem": { - "date": "3/3", - "time": "9.00 - 10.30AM" + "date": "15/03", + "time": "1.30pm-3.00pm" } }, - "PHY F215": { - "name": "Intro to Astro & Astroph", + "PHA G632": { + "name": "Dosage Form Design", "sections": { "L1": { "instructors": [ - "SARMISTHA BANIK" + "R PUNNA RAO" ], "sched": [ { - "room": "G201", + "room": "G204", "days": [ "M", "W", "F" ], "hours": [ - 8 + 4 + ] + } + ] + }, + "P1": { + "instructors": [ + "R Punna Rao", + "Mohd Shareef Khan", + "Radhika Rajiv Mahajan", + "Swagata Sinha" + ], + "sched": [ + { + "room": "LAB", + "days": [ + "T", + "Th" + ], + "hours": [ + 8, + 9 ] } ] } }, "compre": { - "date": "14/05", - "session": "AN" + "date": "20/05", + "session": "FN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "1.30pm-3.00pm" } }, "PHY F241": { @@ -20153,25 +17717,25 @@ "sections": { "L1": { "instructors": [ - "SOURI BANERJEE" + "SARMISTHA BANIK" ], "sched": [ { "room": "G201", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 5 + 3 ] } ] }, "T1": { "instructors": [ - "Souri Banerjee" + "Sarmistha Banik" ], "sched": [ { @@ -20187,12 +17751,12 @@ } }, "compre": { - "date": "08/05", + "date": "06/05", "session": "FN" }, "midsem": { - "date": "4/3", - "time": "1.30 -3.00 PM" + "date": "10/03", + "time": "9.00am-10.30am" } }, "PHY F242": { @@ -20200,46 +17764,46 @@ "sections": { "L1": { "instructors": [ - "SUBASH N. KARBELKAR" + "K V SHIV CHAITANYA" ], "sched": [ { "room": "G201", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 4 + 2 ] } ] }, "T1": { "instructors": [ - "Subash N. Karbelkar" + "K V Shiv Chaitanya" ], "sched": [ { "room": "G201", "days": [ - "Th" + "W" ], "hours": [ - 1 + 8 ] } ] } }, "compre": { - "date": "12/05", + "date": "11/05", "session": "AN" }, "midsem": { - "date": "6/3", - "time": "11.00 -12.30 PM" + "date": "12/03", + "time": "11.00am-12.30pm" } }, "PHY F243": { @@ -20247,46 +17811,46 @@ "sections": { "L1": { "instructors": [ - "RAHUL NIGAM" + "SWASTIK BHATTACHARYA" ], "sched": [ { "room": "G201", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 5 + 3 ] } ] }, "T1": { "instructors": [ - "Rahul Nigam" + "Swastik Bhattacharya" ], "sched": [ { "room": "G201", "days": [ - "S" + "F" ], "hours": [ - 1 + 8 ] } ] } }, "compre": { - "date": "14/05", + "date": "19/05", "session": "FN" }, "midsem": { - "date": "7/3", - "time": "9.00 - 10.30AM" + "date": "16/03", + "time": "9.00am-10.30am" } }, "PHY F244": { @@ -20294,31 +17858,31 @@ "sections": { "L1": { "instructors": [ - "SUBASH N. KARBELKAR", - "VSN Murthy" + "VSN MURTHY", + "Geetika Sahu" ], "sched": [ { - "room": "A211", + "room": "A210", "days": [ "M", "W" ], "hours": [ - 2, - 3 + 7, + 8 ] } ] }, "L2": { "instructors": [ - "K V Shiv Chaitanya", - "Sateesh Kandukuri" + "Subash N. Karbelkar", + "Akhil U Nair" ], "sched": [ { - "room": "A211", + "room": "A210", "days": [ "T", "Th" @@ -20337,7 +17901,7 @@ "sections": { "L1": { "instructors": [ - "MEENAKSHI V" + "PRASANT SAMANTRAY" ], "sched": [] } @@ -20348,30 +17912,30 @@ "sections": { "L1": { "instructors": [ - "SWASTIK BHATTACHARYA" + "RAHUL NIGAM" ], "sched": [ { - "room": "G203", + "room": "G202", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 9 + 5 ] } ] } }, "compre": { - "date": "11/05", + "date": "23/05", "session": "FN" }, "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" + "date": "16/03", + "time": "3.30pm-5.00pm" } }, "PHY F341": { @@ -20379,31 +17943,29 @@ "sections": { "L1": { "instructors": [ - "KANNAN RAMASWAMY", - "B Harihara Venkataraman" + "ARAVINDA N RAGHAVAN" ], "sched": [ { - "room": "G205", + "room": "G201", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 2 + 4 ] } ] }, "T1": { "instructors": [ - "Kannan Ramaswamy", - "B Harihara Venkataraman" + "Aravinda N Raghavan" ], "sched": [ { - "room": "G205", + "room": "G201", "days": [ "M" ], @@ -20415,12 +17977,12 @@ } }, "compre": { - "date": "04/05", - "session": "AN" + "date": "21/05", + "session": "FN" }, "midsem": { - "date": "3/3", - "time": "11.00 -12.30 PM" + "date": "14/03", + "time": "9.00am-10.30am" } }, "PHY F342": { @@ -20428,31 +17990,31 @@ "sections": { "L1": { "instructors": [ - "ARANYA BHUTI BHATTACH" + "ASRARUL HAQUE" ], "sched": [ { - "room": "G205", + "room": "G201", "days": [ - "T", - "Th", - "S" + "M", + "W", + "F" ], "hours": [ - 3 + 5 ] } ] }, "T1": { "instructors": [ - "Aranya Bhuti Bhattacherjee" + "Asrarul Haque" ], "sched": [ { - "room": "G205", + "room": "G201", "days": [ - "W" + "F" ], "hours": [ 1 @@ -20462,12 +18024,12 @@ } }, "compre": { - "date": "06/05", - "session": "AN" + "date": "14/05", + "session": "FN" }, "midsem": { - "date": "4/3", - "time": "9.00 - 10.30AM" + "date": "14/03", + "time": "3.30pm-5.00pm" } }, "PHY F343": { @@ -20475,31 +18037,33 @@ "sections": { "L1": { "instructors": [ - "ASRARUL HAQUE" + "RAHUL NIGAM", + "Sarmistha Banik" ], "sched": [ { - "room": "G205", + "room": "G201", "days": [ "M", "W", "F" ], "hours": [ - 10 + 9 ] } ] }, "T1": { "instructors": [ - "Asrarul Haque" + "Rahul Nigam", + "Sarmistha Banik" ], "sched": [ { - "room": "G205", + "room": "G201", "days": [ - "F" + "W" ], "hours": [ 1 @@ -20509,12 +18073,12 @@ } }, "compre": { - "date": "11/05", + "date": "09/05", "session": "FN" }, "midsem": { - "date": "5/3", - "time": "3.30 - 5.00 PM" + "date": "11/03", + "time": "9.00am-10.30am" } }, "PHY F344": { @@ -20522,41 +18086,22 @@ "sections": { "L1": { "instructors": [ - "ARAVINDA N RAGHAVAN", - "Aiswarya N M", - "Meenakshi V" + "B HARIHARA VENKATARA", + "Kannan Ramaswamy", + "Nilofar Naaz", + "Priyanka Mitra" ], "sched": [ { - "room": "A224", + "room": "B214", "days": [ "T", "Th" ], "hours": [ + 6, 7, - 8, - 9 - ] - } - ] - }, - "L2": { - "instructors": [ - "Aravinda N Raghavan", - "Meenakshi V" - ], - "sched": [ - { - "room": "A224", - "days": [ - "M", - "W" - ], - "hours": [ - 7, - 8, - 9 + 8 ] } ] @@ -20568,7 +18113,7 @@ "sections": { "L1": { "instructors": [ - "MEENAKSHI V" + "VSN MURTHY" ], "sched": [] } @@ -20579,7 +18124,7 @@ "sections": { "L1": { "instructors": [ - "MEENAKSHI V" + "VSN MURTHY" ], "sched": [] } @@ -20590,7 +18135,7 @@ "sections": { "L1": { "instructors": [ - "SARMISTHA BANIK" + "B HARIHARA VENKATARA" ], "sched": [] } @@ -20601,7 +18146,7 @@ "sections": { "L1": { "instructors": [ - "SARMISTHA BANIK" + "B HARIHARA VENKATARA" ], "sched": [] } @@ -20612,7 +18157,39 @@ "sections": { "L1": { "instructors": [ - "B HARIHARA VENKATARA" + "VSN MURTHY", + "B Harihara Venkataraman" + ], + "sched": [ + { + "room": "G203", + "days": [ + "T", + "Th", + "S" + ], + "hours": [ + 2 + ] + } + ] + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "PHY F412": { + "name": "Intro to Quan Field Theo", + "sections": { + "L1": { + "instructors": [ + "PRASANT SAMANTRAY" ], "sched": [ { @@ -20623,19 +18200,19 @@ "F" ], "hours": [ - 7 + 3 ] } ] } }, "compre": { - "date": "13/05", - "session": "FN" + "date": "06/05", + "session": "AN" }, "midsem": { - "date": "6/3", - "time": "1.30 -3.00 PM" + "date": "10/03", + "time": "11.00am-12.30pm" } }, "PHY F420": { @@ -20649,24 +18226,24 @@ { "room": "G202", "days": [ - "M", - "W", - "F" + "T", + "Th", + "S" ], "hours": [ - 8 + 3 ] } ] } }, "compre": { - "date": "14/05", + "date": "19/05", "session": "AN" }, "midsem": { - "date": "7/3", - "time": "11.00 -12.30 PM" + "date": "16/03", + "time": "11.00am-12.30pm" } }, "PHY F431": { @@ -20678,26 +18255,147 @@ ], "sched": [ { - "room": "G206", + "room": "G202", "days": [ "T", "Th", "S" ], "hours": [ - 5 + 2 + ] + } + ] + } + }, + "compre": { + "date": "17/05", + "session": "FN" + }, + "midsem": { + "date": "15/03", + "time": "9.00am-10.30am" + } + }, + "CHEM G531": { + "name": "Recent Advances in Chem", + "sections": { + "L1": { + "instructors": [ + "JAYANTY SUBBALAKSHMI " + ], + "sched": [ + { + "days": [ + "M", + "w", + "F" + ], + "hours": [ + 9 + ] + } + ] + } + }, + "compre": { + "date": "09/05", + "session": "FN" + }, + "midsem": { + "date": "11/03", + "time": "9.00am-10.30am" + } + }, + "CHEM G551": { + "name": "Adv Organic chemistry", + "sections": { + "L1": { + "instructors": [ + "D. RAMAIAH" + ], + "sched": [ + { + "days": [ + "M", + "w", + "F" + ], + "hours": [ + 3 ] } ] } }, "compre": { - "date": "08/05", + "date": "06/05", "session": "AN" }, "midsem": { - "date": "4/3", - "time": "3.30 - 5.00 PM" + "date": "10/03", + "time": "11.00am-12.30pm" + } + }, + "CHEM G552": { + "name": "Adv Inorganic chemistry", + "sections": { + "L1": { + "instructors": [ + "HIMANSHU AGGARWAL", + "Sounak Roy" + ], + "sched": [ + { + "days": [ + "T", + "Th", + "S" + ], + "hours": [ + 5 + ] + } + ] + } + }, + "compre": { + "date": "23/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "3.30pm-5.00pm" + } + }, + "CHEM G561": { + "name": "Heterocyclic Chemistry", + "sections": { + "L1": { + "instructors": [ + "TANMANY CHATTERJEE" + ], + "sched": [ + { + "days": [ + "M", + "W", + "F" + ], + "hours": [ + 4 + ] + } + ] + } + }, + "compre": { + "date": "20/05", + "session": "FN" + }, + "midsem": { + "date": "16/03", + "time": "1.30pm-3.00pm" } } } \ No newline at end of file diff --git a/client/src/components/authorization/CheckLoggedIn.jsx b/client/src/components/authorization/CheckLoggedIn.jsx index 0d3d964..3e039df 100644 --- a/client/src/components/authorization/CheckLoggedIn.jsx +++ b/client/src/components/authorization/CheckLoggedIn.jsx @@ -12,25 +12,25 @@ const CheckLoggedIn = ({ verifyLogin }) => { verifyLogin(); }, [verifyLogin]); const [userInfo, loading] = useGetData("/api/current_user"); - const useStyles = makeStyles(theme => ({ + const useStyles = makeStyles((theme) => ({ root: { width: "100%", "& > * + *": { - marginTop: theme.spacing(2) - } - } + marginTop: theme.spacing(2), + }, + }, })); - const useStylesCircular = makeStyles(theme => ({ + const useStylesCircular = makeStyles((theme) => ({ root: { display: "flex", alignItems: "center", justifyContent: "center", "& > * + *": { marginLeft: theme.spacing(2), - marginTop: theme.spacing(2) - } - } + marginTop: theme.spacing(2), + }, + }, })); const Cclasses = useStylesCircular(); const classes = useStyles(); @@ -46,9 +46,9 @@ const CheckLoggedIn = ({ verifyLogin }) => { /**/ ); } else if (!userInfo) { - return ; + return ; } else { - return ; + return ; } }; diff --git a/client/src/components/forms/HelForm.jsx b/client/src/components/forms/HelForm.jsx index 460c6dd..bd9bc59 100644 --- a/client/src/components/forms/HelForm.jsx +++ b/client/src/components/forms/HelForm.jsx @@ -31,14 +31,14 @@ var humanitiesCodes = Object.keys(courses).filter( // Currently, these are the only ones offered across all semesters const slots = [ - { value: "0", label: "1:30 - 2:00 PM" }, - { value: "1", label: "2:00 - 2:30 PM" }, - { value: "2", label: "2:30 - 3:00 PM" }, - { value: "3", label: "3:00 - 3:30 PM" }, - { value: "4", label: "3:30 - 4:00 PM" }, - { value: "5", label: "4:00 - 4:30 PM" }, - { value: "6", label: "4:30 - 5:00 PM" }, - { value: "7", label: "5:30 - 5:30 PM" } + { value: "0", label: "Slot 1" }, + { value: "1", label: "Slot 2" }, + { value: "2", label: "Slot 3" }, + { value: "3", label: "Slot 4" }, + { value: "4", label: "Slot 5" }, + { value: "5", label: "Slot 6" }, + { value: "6", label: "Slot 7" }, + { value: "7", label: "Slot 8" } ]; const branches = [ { value: "BIO", label: "Biological Sciences" }, @@ -199,18 +199,19 @@ const HelForm = ({ submitForm, submitted, user }) => { return (
- Please Enter your Branch, year and select your Humanities Courses of the - previous semester below: + Before you continue to timetable creation, please share the following details with us: +
+ Your current year and branch, along with your previous semester's slot and humanities electives


onSubmit(e)}> = 2 ? branch : branches} + className="left-width" + placeholder="Select branch (select 2 branches for dual degree)" + /> + -
-

-
- - {!loading && TTs.length !== 0 ? ( - TTs.map((itemc) => { - return ( - <> + > */} +
+

+ +

+ +
+ +
+ + {!loading && TTs.length !== 0 ? ( + TTs.map((itemc) => { + return (
- - Timetable Name - - + {itemc.name} - - Shared by - - - {itemc.username} - + Shared by + {itemc.username} - Date:{" "} - {itemc.date.substr(0, itemc.date.indexOf("T"))} + Date: {itemc.date.substr(0, itemc.date.indexOf("T"))}
{"Time: "}{" "} {itemc.date.substr(itemc.date.indexOf("T") + 1, 9)} @@ -232,15 +222,15 @@ const ShareTimeTable = (props) => {
{ - props.editTT(itemc); + props.editTT(itemc) }} > @@ -248,34 +238,34 @@ const ShareTimeTable = (props) => {
-
- - ); +
+ ) }) ) : loading ? (

Loading

) : ( -

No Shared Timetables

+
No Shared Timetables
)} - + +
- ); -}; + ) +} const mapStateToProps = (state) => { return { user: state.auth.user, - }; -}; + } +} const mapDispatchToProps = (dispatch) => { return { editTT: (tt) => dispatch(editTT(tt, true)), - }; -}; + } +} ShareTimeTable.propTypes = { editTT: PropTypes.func.isRequired, -}; +} -export default connect(mapStateToProps, mapDispatchToProps)(ShareTimeTable); +export default connect(mapStateToProps, mapDispatchToProps)(ShareTimeTable) diff --git a/client/src/components/timetable/CreateTimeTable.jsx b/client/src/components/timetable/CreateTimeTable.jsx index 162f75a..2314bd3 100755 --- a/client/src/components/timetable/CreateTimeTable.jsx +++ b/client/src/components/timetable/CreateTimeTable.jsx @@ -32,13 +32,13 @@ class CreateTimeTable extends Component { CustomButton(type, id) { return ( - + ); } @@ -73,51 +73,64 @@ class CreateTimeTable extends Component { {this.state.view === 0 ? ( <> - {this.CustomButton("Preview", 1)} - {this.CustomButton("Midsem Schedule", 2)} - {this.CustomButton("Compre Schedule", 3)} - {this.CustomButton("Export As PNG", 4)} - - -
-
- -
-
+
+
+ +
+ {this.CustomButton("Preview", 1)} + {this.CustomButton("Midsem Schedule", 2)} + {this.CustomButton("Compre Schedule", 3)} + {this.CustomButton("Export PNG", 4)} + + +
+
+
+
+ +
+
) : this.state.view === 1 ? ( <> {this.CustomButton("Preview", 0)} +
+
) : this.state.view === 2 ? ( <> {this.CustomButton("Midsem Schedule", 0)} +
+
) : this.state.view === 3 ? ( <> {this.CustomButton("Compre Schedule", 0)} +
+
) : this.state.view === 4 ? ( <> {this.CustomButton("Export As PNG", 0)} +
) : null} diff --git a/client/src/components/timetable/PreviewTT.jsx b/client/src/components/timetable/PreviewTT.jsx index 43537d2..3b3795c 100644 --- a/client/src/components/timetable/PreviewTT.jsx +++ b/client/src/components/timetable/PreviewTT.jsx @@ -1,47 +1,51 @@ -import { Component } from "react"; -import React from "react"; -import { connect } from "react-redux"; -import PropTypes from "prop-types"; -import { deleteSection } from "../../redux/actions/UpdateTimeTable"; -import "../../styles/Timetable.css"; - -const ntw = require("number-to-words"); +import { Component } from "react" +import React from "react" +import { connect } from "react-redux" +import PropTypes from "prop-types" +import { deleteSection } from "../../redux/actions/UpdateTimeTable" +import "../../styles/Timetable.css" +const ntw = require("number-to-words") class PreviewTT extends Component { constructor(props) { - super(props); - this.populateTimetable.bind(this); - this.gridArray = []; + super(props) + this.populateTimetable.bind(this) + this.infoRedirect.bind(this) + this.gridArray = [] + } + infoRedirect(courseCode){ + let courseName = courseCode.toString().replace(' ','_') + window.open("https://reviews.bphc.xyz/courses/"+courseName) } populateTimetable() { var gridList = [ - ["Time", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10], - ["Monday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["Tuesday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["Wednesday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["Thursday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["Friday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - ["Saturday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - ]; + ["Time", 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11], + ["Monday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + ["Tuesday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + ["Wednesday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + ["Thursday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + ["Friday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + ["Saturday", 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + ] - let Map = {}; - Map["M"] = 1; - Map["T"] = 2; - Map["W"] = 3; - Map["Th"] = 4; - Map["F"] = 5; - Map["S"] = 6; + let Map = {} + Map["M"] = 1 + Map["T"] = 2 + Map["W"] = 3 + Map["Th"] = 4 + Map["F"] = 5 + Map["S"] = 6 - let divStyle = {}; - var days = ["M", "T", "W", "Th", "F", "S"]; - var hours = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]; - var day, hour; + let divStyle = {} + var days = ["M", "T", "W", "Th", "F", "S"] + var hours = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11] + var day, hour for (day of days) { for (hour of hours) { - divStyle = {}; - let section = this.props.TimeTable[day][ntw.toWords(hour)]; - let str = ""; + divStyle = {} + let section = this.props.TimeTable[day][ntw.toWords(hour)] + let str = "" if (gridList[Map[day]][hour] === -1) { - continue; + continue } else if (!section.courseCode) { str = (
{" "}





- ); + ) } else { if (section.numHours > 1) { for (let i = 1; i < section.numHours; i++) { - gridList[Map[day]][hour + i] = -1; + gridList[Map[day]][hour + i] = -1 } divStyle = { gridRowStart: `${hour + 1}`, gridColumnStart: `${Map[day] + 1}`, gridCoulmnEnd: `${Map[day] + 2}`, - gridRowEnd: `span ${section.numHours}` - }; + gridRowEnd: `span ${section.numHours}`, + } } str = ( - <> -
- this.props.onRemove(section.section, section.courseCode) +
{ + if (!e) var e = window.event; + if (e.button == 1){ + e.preventDefault() + this.infoRedirect(section.courseCode) } - > -
- {section.courseName} -

-
- {section.courseCode} -

- {section.sectionRoom} + else if(e.button==0){ + this.props.onRemove(section.section, section.courseCode) + } + } + } + > + Click to remove section +
+ {section.courseName}

- - ); + {section.courseCode} +

+ {section.section} +

+
+ ) } - gridList[Map[day]][hour] = str; + gridList[Map[day]][hour] = str } } for (let i = 0; i <= 6; i++) { - for (let j = 0; j <= 10; j++) { + for (let j = 0; j <= 11; j++) { if (j === 0 || i === 0) { gridList[i][j] = (
{gridList[i][j]}
- ); + ) } } } - return gridList; + return gridList } render() { - this.gridArray = this.populateTimetable(); - let divsToRender = []; - for (let i = 0; i <= 10; i++) { + this.gridArray = this.populateTimetable() + let divsToRender = [] + for (let i = 0; i <= 11; i++) { for (let j = 0; j <= 6; j++) { if (this.gridArray[j][i] === -1); else { - divsToRender.push(<>{this.gridArray[j][i]}); + divsToRender.push(<>{this.gridArray[j][i]}) } } } - return
{divsToRender}
; + return
{divsToRender}
} } -const mapStateToProps = state => { +const mapStateToProps = (state) => { return { - TimeTable: state.updateTT.myTimeTable - }; -}; + TimeTable: state.updateTT.myTimeTable, + } +} -const mapDispatchToProps = dispatch => { +const mapDispatchToProps = (dispatch) => { return { onRemove: (section, courseCode) => - dispatch(deleteSection(section, courseCode)) - }; -}; + dispatch(deleteSection(section, courseCode)), + } +} PreviewTT.propTypes = { TimeTable: PropTypes.object.isRequired, - onRemove: PropTypes.func.isRequired -}; + onRemove: PropTypes.func.isRequired, +} -export default connect(mapStateToProps, mapDispatchToProps)(PreviewTT); +export default connect(mapStateToProps, mapDispatchToProps)(PreviewTT) diff --git a/client/src/components/timetable/SearchTabs.jsx b/client/src/components/timetable/SearchTabs.jsx index 0ba0a69..3f49dfb 100644 --- a/client/src/components/timetable/SearchTabs.jsx +++ b/client/src/components/timetable/SearchTabs.jsx @@ -1,7 +1,7 @@ import React, { Component } from "react"; import "react-tabs/style/react-tabs.css"; import M from "materialize-css"; -import "materialize-css/dist/css/materialize.min.css"; +// import 'materialize-css/dist/css/materialize.min.css'; import PropTypes from "prop-types"; import SearchHel from "./SearchHel.jsx"; import Search from "../utils/Search.jsx"; @@ -15,23 +15,26 @@ class SearchTabs extends Component { super(props); this.state = { initial: this.props.allCourses, - current: this.props.allCourses + current: this.props.allCourses, }; this.filterItems = this.filterItems.bind(this); } filterItems(input) { - let filterCourses = obj => + let filterCourses = (obj) => Object.keys(obj) .filter( - item => + (item) => item.toLowerCase().search(input.target.value.toLowerCase()) !== -1 || obj[item]["name"] .toLowerCase() .search(input.target.value.toLowerCase()) !== -1 ) - .reduce((res, key) => {res[key] = obj[key]; return res}, {}); + .reduce((res, key) => { + res[key] = obj[key]; + return res; + }, {}); let updatedlist = filterCourses(this.state.initial); this.setState({ current: updatedlist }); } @@ -39,26 +42,26 @@ class SearchTabs extends Component { render() { return ( <> -
+
-
+
-
+
-
+
-
+
-
+
-
+
@@ -45,7 +45,7 @@ class SectionTabs extends Component { } SectionTabs.propTypes = { - getSections: PropTypes.func.isRequired + getSections: PropTypes.func.isRequired, }; export default SectionTabs; diff --git a/client/src/components/utils/Navbar.jsx b/client/src/components/utils/Navbar.jsx index 130b8f5..6bd301e 100644 --- a/client/src/components/utils/Navbar.jsx +++ b/client/src/components/utils/Navbar.jsx @@ -10,61 +10,59 @@ export const Navbar = ({ submitted, user, isAuthenticated, logout }) => { } else if ((!submitted && user && user.submittedForm) || submitted) { return (
-
); } else { return (
-