Skip to content

Create calculating Wave connected armature #5

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions calculating Wave connected armature
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
/*documentation
Question:- A simple lap wound armature has 840 conductor and flux per pole
of 0.018 weber . Calculated when the machine is running 600 rpm. Also
calculated the emf generated if the armature winding is wave connected.
P = 6
Z = 840
2= 0.018 wb
N = 600 rpm
*/



package dcMachines;

import java.util.Scanner;

public class DcGeneration {

public static void main(String [] args) {

Scanner scan = new Scanner (System.in);
System.out.print("enter number of poles : = ");
int pole = scan.nextInt();
System.out.print("enter total number of conductor : = ");
int conductor = scan.nextInt();
System.out.print("enter flux per pole : = ");
float flux = scan.nextFloat();
System.out.print("enter speed of rotation of armature in R.P.M : = ");
int rotation = scan.nextInt();

//calculating lap connected armature
double LapConnected = (pole*flux*conductor*rotation)/(60*pole);
System.out.print("lap connected armature = "+LapConnected);

//calculating Wave connected armature



}

}