From 00594775c016f00bf4a858dff4b5f10b9b4d7679 Mon Sep 17 00:00:00 2001 From: Jyoti Kumari <71651949+me-jyotii@users.noreply.github.com> Date: Mon, 12 Oct 2020 21:46:07 +0530 Subject: [PATCH] Create calculating Wave connected armature This program is related to physics concept, here we are calculating Wave connected armature.... --- calculating Wave connected armature | 41 +++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 calculating Wave connected armature diff --git a/calculating Wave connected armature b/calculating Wave connected armature new file mode 100644 index 0000000..d31f67e --- /dev/null +++ b/calculating Wave connected armature @@ -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 + + + + } + +}