Agenda
- Estimated Budget
- Training Program Schedule
- Work Plans (Presentations by Scholars)
- Work Schedules for Other recruits
Proposal
Arduino DUE |
2 |
32-bit ARM core microcontroller |
ADC 16 Bits |
4000 |
Arduino Nano |
1 |
Prototyping experiments |
Identical to Arduino Duemilanove minus DC power jack |
4000 |
RAspberry Pi 3 |
1 |
ADC,DAC,Node |
A model for hardware based pedagogy |
4000 |
Node MCU |
4 |
NodeMCU is an open source IoT platform |
Device to Cloud Communication using wifi and message passing mode |
3000 |
X bee Module |
1 |
point-to-point and star communications at over-the-air baud rates of 250 kbit/s |
do |
3000 |
SIM 900 |
1 |
SIM900 delivers GSM/GPRS 850/900/1800/1900MHz performance for voice, SMS, Data, and Fax in a small form factor and with low power consumption |
do |
2000 |
Micro SD Card module |
2 |
For local data acquisition and experimental result storage |
do |
2000 |
Imepedance Converter |
2 |
Impedance Analysor |
Impedance Analysis of Bio samples |
15000 |
IDE electrode (10um) |
1 set (20 pcs) |
Probe |
Electrical Measurement for Biosystems |
50000 |
IDE connector |
1 set |
Do |
Do |
14000 |
Bread Board (840 point) |
5 pcs |
- |
Prototyping Experiments |
1500 |
+Bread Board (400 point) |
5 pcs |
- |
do |
0 |
+Bread Board (170 point) |
10 pcs |
- |
do |
0 |
Tool Box |
1 |
- |
- |
10000 |
Light Intenisty Sensor |
5 |
Prototyping Experiments |
- |
2000 |
Discrete Components |
- |
do |
- |
1000 |
pH Sensor |
1 |
do |
- |
2000 |
Power Supply (SMPS)[+12v/ -12 v] |
2pcs |
do |
- |
16000 |
Mobile Power Bank (10500 mAh) |
1 |
Power Source in Remote Areas |
- |
2000 |
MCP 4822 DAC |
3 |
- |
Sensor Fabrication |
3000 |
TLV 4110 (OpAmp) |
1 |
- |
do |
1000 |
AD5933 |
1 |
- |
do |
1000 |
Thingspeak A/C |
1 |
- |
Cloud Monitoring |
120000 |
Wi Fi Prortable Router with SIM |
1 Year |
- |
- |
10000 |
Semiconductor Powder TiO2,BN,MoS2 |
100 gm Each |
Consumable |
- |
50000 |
Spectro/micro-parts |
1 |
Lamp |
- |
60000 |
Training Program Subject
Hadoop |
4 |
Amlan |
2500 |
10 |
50000 |
Open Harware Using Matlab |
4 |
KCHK |
2500 |
10 |
50000 |
Big data handling (R , Python) |
4 |
Bhaswati |
2500 |
10 |
50000 |
Biosensing |
4 |
KCHK |
2500 |
10 |
50000 |
Analayis
library(docxtractr)
eqav<-300000.00
consav<-50000.00
overhead<-267000
avcost<-eqav+consav+0.25*overhead
traincost<-3.67
travel<-60000.00
complx<-read_docx("propo.docx")
t1<-docx_extract_tbl(complx, tbl_number = 1, header = TRUE, trim = TRUE)
t2<-docx_extract_tbl(complx, tbl_number = 2, header = TRUE, trim = TRUE)
X<-sum(as.double(t1$Price.INR))
Y<-sum(as.double(t2$Renumeerations))
Z<-10*sum(as.double(t2$Student.Expenses))
ss<-sprintf("Equipment Cost=%8.2f,Resouce Person=%8.2f,Per Student Cost=%8.2f\n",X,Y,Z)
bal<-avcost-X
cat(ss)
## Equipment Cost=380500.00,Resouce Person=200000.00,Per Student Cost=100000.00
pp<-sprintf("Available for equipment+Consumable =%8.0f,Estimated Cost for equipment+Consumable = %8.0f Balance =%8.0f INR\n",avcost,X,bal)
cat(pp)
## Available for equipment+Consumable = 416750,Estimated Cost for equipment+Consumable = 380500 Balance = 36250 INR
gg<-sprintf("Training Available =%8.0f ,Training Planned (Student expenses+Renumeerations) =%8.0f , Balance Available for Travel=%8.0f ",367000,Y+Z,367000-Y-Z)
cat(gg)
## Training Available = 367000 ,Training Planned (Student expenses+Renumeerations) = 300000 , Balance Available for Travel= 67000