01 November, 2021

TSPGECET SEAT ALLOTMENT SCHEDULE

Display of verified list of eligible registered candidates & call for corrections if any through E-mail: 28-10-2021.

  1. Exercising Web options- Phase I: 29-10-2021 and 30-10-2021.
  2. Edit of web options-Phase -I: 31-10-2021.
  3. List of Provisionally selected candidates will be prepared College wise and will be placed in the website (Phase-I): 03-11-2021.
  4. Reporting at concerned colleges for Verification of Original Certificates along with Tuition Fee payment challan: 04-11-2021 to 12-11-2021.
  5. Commencement of Class work: 15-11-2021.

03 October, 2018

Password Based Switching


Password Based Switching

  Now a days encryption is necessary to prevent unauthorized activity. In this project we are switching any power load using relay interfaced with arduino board by entering password with keypad.

Components Required :

  •  Arduino UNO
  • Keypad (4 x 4)
  • Relay
  • LCD display (optional)
Keypad is connected to the arduino by jumper wires. The keypad has 8 pins 4 for Columns and 4 for Rows. each pin is connected to any of the Arduino digital pins.

CODE : 

#include <Keypad.h>;
#include <Wire.h>;
int Relay = 7;
#define Password_Lenght 7
char Data[Password_Lenght];
char Master[Password_Lenght] = "123789";
byte data_count = 0, master_count = 0;
bool Pass_is_good;
char customKey;

const byte ROWS = 4;
const byte COLS = 4;
char keys[ROWS][COLS] = {
  {'1', '2', '3' ,'A'},
  {'4', '5', '6' ,'B'},
  {'7', '8', '9' ,'C'},
  {'*', '0', '#' ,'D'}
};

byte rowPins[ROWS] = {
  2, 3, 4, 5
};
byte colPins[COLS] = {
  10, 9, 8, 7
};

Keypad customKeypad( makeKeymap(keys), rowPins, colPins, ROWS, COLS);

void setup()
{
  Serial.begin(9600);
  pinMode(Relay, OUTPUT);
}

void loop()
{
  Serial.println("Enter Password");

  customKey = customKeypad.getKey();
  if (customKey)
  {
    Data[data_count] = customKey;
  }

  if (data_count == Password_Lenght - 1)
  {
    Serial.print("Password is ");

    if (!strcmp(Data, Master))
    {
      Serial.println("acceced");
      delay(1000);
      digitalWrite(Relay, HIGH);
      Serial.println("Relay operated");
    }
    else {
      Serial.println("Denied");
      delay(1000);
      Serial.println("Wrong Password");
      delay(1000);

      clearData();
    }
  }
}

void clearData()
{
  while (data_count != 0)
  {
    Data[data_count--] = 0;
  }
  return;
}

Contact us on Facebook ELECTRICAL HUB

for any help on arduino Coding  WhatsApp  Send Message



08 September, 2018


Electrical Engineering
Topic : Induction motors

Multiple Choice Questions and Answers

latest MCQ for all competitive exams : 

1. In a split phase motor, the running winding should have
(a) High resistance and low inductance
(b) low resistance and high inductance
(c) high resistance as well as high inductance
(d) low resistance as well as low inductiance
Ans: b

2. If the capacitor of a single-phase motor is short-circuited
(a) the motor will not start
(b) the motor will run
(c) the motor will run in reverse direction
(d) the motor will run in the same direction at reduced r.p.m.
Ans: a

3. In capacitor start single-phase motors
(a) current in the starting winding leads the voltage
(b) current in the starting winding lags the voltage
(c) current in the starting winding is in phase with voltage in running winding
(d) none of the above
Ans: a

4. In a capacitor start and run motors the function of the running capacitor in series with the auxiliary winding is to
(a) improve power factor
(b) increase overload capacity
(c) reduce fluctuations in torque
(d) to improve torque
Ans: a

5. In a capacitor start motor, the phase displacement between starting and running winding can be nearly
(a) 10°
(b) 30°
(c) 60°
(d) 90°
Read more »

10 August, 2018

DTMF based automation

DTMF based Automation (Switching)

          As technology is advancing so houses are also getting smarter. Modern houses are gradually shifting from conventional switches to centralized control system, involving remote controlled switches. Presently, conventional wall switches located in different parts of the house makes it difficult for user to go near them to operate. Even more it becomes more difficult for elderly or physically handicapped people to do so.

     the DTMF technology is one of the easiest and simple technique to implement home automation. by this method we can switch ON / OFF of any of the electric appliances in home by pressing keys on mobile keypad. 





** Use variable resistors (POTS) for better output.


CM8870 DATA SHEET (Click Here)

for any help on arduino code FACEBOOK

for any help on arduino Coding  WhatsApp  Send Message

SOLAR TRACKING

SOLAR TRACKING


a mini project for EEE students :

              Solar energy is rapidly advancing as an important means of renewable energy source.Solar tracking enables more solar energy to be generated because the solar panel is able to maintain a perpendicular profile to the sun rays.Through initial cost of setting of a solar tracking system is high,this paper proposes a cheaper solution . Design and construction of prototype for solar tracking system with single degree of freedom,which detects sunlight using light dependent resistors (LDR) , is discussed.

Here is the code :


#include<Servo.h>

Servo myservo;
int pos = 90;
int sens1 = A0;
int sens2 = A1;
int tolerance = 2;

void setup()
{
  myservo.attach(9);
  pinMode(sens1, INPUT);
  pinMode(sens2, INPUT);
  myservo.write(pos);
  delay(2000);
}

void loop()
{
  int val1 = analogRead(sens1);
  int val2 = analogRead(sens2);

  if ((abs(val1 - val2) <= tolerance) || (abs(val2 - val1) <= tolerance)) 
  {
  
  }
  else {
    if (val1 > val2)
    {
      pos = --pos;
    }
    if (val1 < val2)
    {
      pos = ++pos;
    }
  }

  if (pos > 180) {
    pos = 180;
  }
  if (pos < 0) {
    pos = 0;  
  }

  myservo.write(pos);
  delay(50);
}



for any help in arduino coding Message on Facebook  (click here)

whatsapp  Send Message

Labels: , , ,

05 August, 2018

ARDUINO BASED HOME AUTOMATION

ARDUINO BASED HOME AUTOMATION


          The main objective of this project is to develop a home automation system using an Arduino board with LM35 and PIR sensors. As technology is advancing so houses are also getting smarter. Modern houses are gradually shifting from conventional switches to centralized control system, involving remote controlled switches. Presently, conventional wall switches located in different parts of the house makes it difficult for user to go near them to operate. Even more it becomes more difficult for elderly or physically handicapped people to do so.

Read more »

Labels: , , , , , ,

29 July, 2018

CEPTAM 9

DRDO

DEFENCE RESEARCH & DEVELOPMENT ORGANISATION (DRDO)
MINISTRY OF DEFENCE, GOVERNMENT OF INDIA



"Government strives to have a workforce which reflects gender balance and women candidates are encouraged to apply."
CEPTAM
Recruitment of 494 vacancies for the post of Senior Technical Assistant ‘B’ (STA ‘B’)
under Defence Research & Development Organisation Technical Cadre (DRTC)
Advertisement No.:CEPTAM-09/STA-B
Crucial date for eligibility : 29 August 2018 Date of DRDO Entry Test-2018 (Tier-I & Tier II):
Closing date for submission of application: 29 August 2018 To be announced on website
DRDO offers exciting and challenging career opportunities to work on defence systems, infrastructure & related activities in a broad spectrum of subjects/disciplines
at its more than 60 laboratories/establishments spread throughout the country. Online applications are invited for recruitment to the post of Senior Technical
Assistant ‘B’ (STA ‘B’) through DRDO Entry Test-2018 in various subjects/disciplines as per section-1 below. Candidates are advised to read the complete
advertisement carefully, before filling up the online application form. Instructions for filling-up of online application and Frequently Asked Questions (FAQs) are available
on CEPTAM notice board of DRDO website www.drdo.gov.in. This advertisement consists of five sections. All details given in these sections are applicable to
candidates. Translation ambiguity, if any, shall be resolved by referring to the English version of the advertisement published in the Employment News. In case of any
ambiguity, the decision of DRDO will be final. Any dispute will be subject to the courts/tribunals having jurisdiction over Delhi only.
Read more »

17 July, 2018

Scholarships for Diploma students

Scholarships for Diploma students 

 K.C. Mahindra Educational trust offering scholarships to diploma students in all trades.

Eligibility : 
                    Diploma 1st Years students are eligible to apply this.




HOW TO APPLY : 
                    
  •  Download application form (Click Here to Download).
  • fill all the blanks with your details.
  • attach Valid Documents (SSC Memo, INCOME certificate, Aadhaar card, Bank passbook Allotment order & you can attach recommendation letter by the faculty of your institution).
  • Submit application form


After submitting the application, they will make a short list and invited for Interview.

  • They provide Translator too,
  • they will pay you gives you the transportation charges at the time of interview


after the interview process they gives a list of selected students for Scholarship,

Selected students should be go to Mahindra office to collect cheque of amount rupeese of 5000/-

at the time of collecting Cheque they provides you a document and we need to fill the blanks with details sent by post to K.C. Mahindra Educational Trust.

Scholarships amount : 
  • 1st Year July 5000/- (by cheque)
  • 1st year December 5000/- (direct sent to your bank account)
  • 3rd Sem July 5000/- (direct sent to your bank account)
  • 4th Sem December 5000/- (direct sent to your bank account)
  • 5th Sem July 5000/- (direct sent to your bank account)
  • 6th Sem December 5000/- (direct sent to your bank account)


submission of application at location given below :

Mahindra & Mahindra Ltd
Auto Sector
T.S. Reddy Complex
1-7-1, Park Lane, S.D.Road
Mahindra Towers, 3rd Floor
Secunderabad 500003.


For more Details

Whatsapp : 9052525306

message on facebook : EEE MASABTANK


















31 January, 2017

List of Shortlisted Candidates for the Post of Diploma Trainee

List of Shortlisted Candidates for the Post of Diploma Trainee (Electrical)


List of Shortlisted Candidates for the Post of Diploma Trainee (Electrical)  (CLICK HERE)


 S.No. Roll No. Name
 1 210112081 POLISETTI GOPALAKRISHNA 
2 105124881 G GOUTHAM 
3 104113397 DUVVURU RAVITHEJA 
4 203123899 SAYAN KAR 
5 203123786 REDDI CHIRANJEEVI 
6 105124676 CHIGURLA ANIL
Read more »

27 August, 2016

HOW TO CALCULATE DIPLOMA OVERALL PERCENTAGE?

HOW TO CALCULATE DIPLOMA OVERALL PERCENTAGE?


Reference: SBTET WORLD



after completing diploma so many of students have confusion about their overall percentage, then don't how to calculate the percentage,



                  For those students can easily calculate with Percentage calculator.
this Calculator can gives EEE students percentage only. For remaining branches it gives wrong calculation. so that please use this calculator for EEE students only. If you want this Calculator for other branches please comment below, that your branch name. then I will give the link to the calculator of your own branch or message to in whatsapp (WhatsApp no. 9052525306) or message in FAcebook (EEE MasabTank)

 

            To Download EEE Percentage Calculator by clicking below link....

Diploma EEE Percentage Calculator DOWNLOAD





For information about Contact us:

                Like on       Facebook EEE MasabTank                    Follow   Twitter                                                      e.Mail    EEE MasabTank

22 August, 2016

POWER GRID CORPORATION OF INDIA

POWER GRID CORPORATION OF INDIA 

SOUTHERN REGION TRANSMISSION SYSTEM – I 

 Address :  #6-6-8/32&395E, Kavadiguda Main Road, Secunderabad – 500080


Recruitment for the post of Diploma Trainee (Electrical), Diploma Trainee (Telecom), Junior Technician Trainee(Electrical) & Assistant Gr.IV (Finance).


            POWERGRID, a “Navratna” Public Sector Enterprise under the Ministry of Power, Govt. of India and the Central Transmission Utility (CTU) of India is engaged in power transmission business with the mandate for planning, co-ordination, supervision and control over complete inter-State transmission system and operation of National & Regional Power Grids. India’s largest Electric Power Transmission Utility.



                POWERGRID owns and operates around 1,31,728 Circuit Kms of transmission lines along with 213 Sub-stations (as on date) and wheels about 55% of total power generated in the country through its transmission networks. POWERGRID also owns and operates around 36,563 Kms of telecom network. 
  

          POWERGRID with its strong in-house expertise in various facets of Transmission, Sub-Transmission, Distribution and Telecom sectors also offers consultancy services at National and Inter-national level. POWERGRID has been making profit since inception, having gross turnover of Rs. 21,281 Crores and net profit of Rs. 6027 Crores (FY 2015-16).




            Southern Region Transmission System-I having its offices & establishments in the states of Telangana, Andhra Pradesh and Northern part of Karnataka requires bright, committed & energetic persons to join its fold as Diploma Trainee(Electrical), Diploma Trainee(Telecom), Jr.Technician Trainee(Electrical) & Assistant Gr.IV (Finance).



            Discipline and Category-wise Break up of Vacancies :


Sl. No.    Name of Post             Vacancy              Reservation            
                                                                           UR   OBC   SC  ST
    1.     Diploma Trainee                40                20      11      06   03        
            (Electrical)

    2.         Diploma Trainee            02                02        -       -       -

                   (Telecom)
   
  3.         Jr. Technician Trainee      20              10       05      03    02
                    (Electrical) 


 4.             Assistant Gr.IV             10              06       02      02     -
                 (Finance) (W4) 




For any Info contacts us on Facebook page EEE MASABTANK 


                                                                     (OR)

e.Mail ID : aridhela0@gmail.com

You can also contacts us WhatsApp.

Our Whatsapp Number is 9052525306

13 August, 2016


JNTU  HYD  EEE


      JAWAHARLAL NEHRU TECHNOLOGICAL UNIVERSITY HYDERABAD.


[II Year B.Tech. EEE-I Sem]


MATHEMATICS – III 


Objectives: To learn  Transforming the given variable coefficient equation (Cauchy’s and Lagrange’s) into the one with constant coefficients.


  Identifying ordinary points, singular points and regular singular points for the given ODE.

 Finding the series solution around a regular singular point. 

 Solve the given ODE with variable coefficients by Frobenius method and test the convergence of its series solution. 

 Series solutions for Legendre and Bessel differential equations, analyzing the properties of Legendre and Bessel polynomials.

 Differentiation and Integration of complex valued functions. 

 Evaluation of integrals using Cahchy’s integral formula.

 Taylor’s series, Maclaurin’s series and Laurent’s series expansions of complex functions 

 Evaluation of integrals using residue theorem. 

 Transform a given function from z - plane to w – plane. 

 Identify the transformations like translation, magnification, rotation and reflection and inversion. 

 Properties of bilinear transformations.



UNIT – I:

Linear ODE with variable coefficients and series solutions(second order only): Equations reducible to constant coefficients-Cauchy’s and Lagrange’s differential equations. Motivation for series solutions, Ordinary point and Regular singular point of a differential equation , Transformation of non-zero singular point to zero singular point. Series solutions to differential equations around zero, Frobenius Method about zero. 



Unit-II:

Special Functions : Legendre’s Differential equation, General solution of Legendre’s equation, Legendre polynomials Properties: Rodrigue’s formula – Recurrence relations, Generating function of Legendre’s polynomials – Orthogonality. Bessel’s Differential equation, Bessel functions properties: – Recurrence relations, Orthogonality, Generating function , Trigonometric expansions involving Bessel functions. 


UNIT-III: 

Complex Functions –Differentiation and Integration : Complex functions and its representation on Argand plane, Concepts of limit Continuity, Differentiability, Analyticity, Cauchy-Riemann conditions, Harmonic functions – Milne – Thompson method. Line integral – Evaluation along a path and by indefinite integration – Cauchy’s integral theorem – Cauchy’s integral formula – Generalized integral formula. 



UNIT-IV: 

Power series expansions of complex functions and contour Integration: Radius of convergence – Expansion in Taylor’s series, Maclaurin’s series and Laurent series. Singular point –Isolated singular point – pole of order m – essential singularity. Residue – Evaluation of residue by formula and by Laurent series – Residue theorem. Evaluation of integrals of the type (a) Improper real integrals    f (x)dx (b)       2 (cos ,sin ) c c f d UNIT-V: Conformal mapping: Transformation of z-plane to w-plane by a function, Conformal transformation. Standard transformations- Translation; Magnification and rotation; inversion and reflection,Transformations like z e , log z, z 2 , and Bilinear transformation. Properties of Bilinear transformation, determination of bilinear transformation when mappings of 3 points are given . TEXT 



BOOKS: 1

Advanced Engineering Mathematics by Kreyszig, John Wiley & Sons. 2. Higher Engineering Mathematics by Dr. B.S. Grewal, Khanna Publishers. REFERENCES: 1) Complex Variables Principles And Problem Sessions By A.K.Kapoor, World Scientific Publishers 2) Engineering Mathematics-3 By T.K.V.Iyengar andB.Krishna Gandhi Etc 3) A Text Book Of Engineering Mathematics By N P Bali, Manesh Goyal 4) Mathematics for Engineers and Scientists, Alan Jeffrey, 6th Edit. 2013, Chapman & Hall/CRC EngineersHub www.engineershub.in 5) Advanced Engineering Mathematics, Michael Greenberg, Second Edition. Person Education 6) Mathematics For Engineers By K.B.Datta And M.A S.Srinivas,Cengage Publications Outcome: After going through this course the student will be able to: Apply the Frobenius method to obtain a series solution for the given linear 2nd ODE. Identify Bessel equation and Legendre equation and solve them under special conditions with the help of series solutions method. Also recurrence relations and orthogonality properties of Bessel and Legendre polynomials. After going to through this course the student will be able to

  analyze the complex functions with reference to their analyticity, Integration using Cauchy’s integral theorem, 

 Find the Taylor’s and Laurent series expansion of complex functions  The conformal transformations of complex functions can be dealt with ease.






09 July, 2016

Instant exams for diploma students

Notification for diploma students

Instant exams for diploma final year students.

Students who has 1 or 2 backlogs can write instant exams.

Online fee payment is started. You can pay fee through online by mee seva, e seva, APonline or gateway method through Debit card, Credit card or online banking.

Click Here to Online Fee Payment


*Instant exams only for telangana board students not for others.

Read more »