1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Katarina [22]
4 years ago
14

The cubic capacity of a four-stroke over-square spark-ignition engine is 245cc. The over-square ratio is (1.1) The clearance vol

ume is 27.2cc. Caleulate the bore, stroke, and compression ratio of the engine.
Engineering
1 answer:
pashok25 [27]4 years ago
4 0

Answer:

Bore = 7 cm

stroke = 6.36 cm

compression ratio = 10.007

Explanation:

Given data:

Cubic capacity of the engine, V = 245 cc

Clearance volume, v = 27.2 cc

over square-ratio = 1.1

thus,

D/L = 1.1

where,

D is the bore

L is the stroke

Now,

V = \frac{\pi}{4}D^2L

or

V = \frac{\pi}{4}\frac{D^3}{1.1}

on substituting the values, we have

245 =  \frac{\pi}{4}\frac{D^3}{1.1}

or

D = 7.00 cm

Now,

we have

D/L = 1.1

thus,

L = D/1.1

L = 7/1.1

or

L= 6.36 cm

Now,

the compression ratio is given as:

\textup{compression ratio}=\frac{V+v}{v}

on substituting the values, we get

\textup{compression ratio}=\frac{245+27.2}{27.2}

or

Compression ratio = 10.007

You might be interested in
A balanced three-phase 208 V wye-connected source supplies a balanced three-phase wyeconnected load. If the line current IA is m
tatyana61 [14]

Answer:

6.004 Ω

Explanation:

For  a Y- connected system given that :

Line voltage, $V_L = 208 \ V$

Line current , $I_L=20\ A$

and specified that $V_L \ and \ I_L$ are in phase.

Hence the impedance will be pure resistive.

For Y-system

$V_L = \sqrt3 V_{ph}$

$V_{ph}$ = phase voltage

$V_{ph}$ $=\frac{V_L}{\sqrt3} = \frac{208}{\sqrt3}$

    = 120.08 V

Line current = Phase current

$I_L = I_{ph} = 20 \ A$

Now, $z_{ph} = \frac{V_{ph}}{I_{ph}}=\frac{120.08}{20}$

                          = 6.004 Ω

5 0
4 years ago
Your department's laser printer recently began printing a vertical black line near the edge of every printed page. What should y
WINSTONCH [101]

Answer:

Replace the toner cartridge

Explanation:

solution

when laser printer  print black color liner vertical line print it is  very frustrating  that condition  nearly empty toner cartridge

but first we clean the corona wire for that color line

and Reinstall the toner cartridges after Shake the toner cartridge side to side

if problem not solve than Clean the drum unit

and finally if not solve change the toner cartridge

so as that our problem will be resolve

5 0
3 years ago
IN JAVA,
Citrus2011 [14]

Answer:

Explanation:

Code:

import java.io.File;

import java.io.FileWriter;

import java.io.IOException;

import java.util.Scanner;

public class Knapsack {

 

  public static void knapsack(int wk[], int pr[], int W, String ofile) throws IOException

  {

      int i, w;

      int[][] Ksack = new int[wk.length + 1][W + 1];

     

      for (i = 0; i <= wk.length; i++) {

  for (w = 0; w <= W; w++) {

  if (i == 0 || w == 0)

  Ksack[i][w] = 0;

  else if (wk[i - 1] <= w)

  Ksack[i][w] = Math.max(pr[i - 1] + Ksack[i - 1][w - wk[i - 1]], Ksack[i - 1][w]);

  else

  Ksack[i][w] = Ksack[i - 1][w];

  }

  }

     

      int maxProfit = Ksack[wk.length][W];

      int tempProfit = maxProfit;

      int count = 0;

      w = W;

      int[] projectIncluded = new int[1000];

      for (i = wk.length; i > 0 && tempProfit > 0; i--) {

         

      if (tempProfit == Ksack[i - 1][w])

      continue;    

      else {

          projectIncluded[count++] = i-1;

      tempProfit = tempProfit - pr[i - 1];

      w = w - wk[i - 1];

      }

     

      FileWriter f =new FileWriter("C:\\Users\\gshubhita\\Desktop\\"+ ofile);

      f.write("Number of projects available: "+ wk.length+ "\r\n");

      f.write("Available employee work weeks: "+ W + "\r\n");

      f.write("Number of projects chosen: "+ count + "\r\n");

      f.write("Total profit: "+ maxProfit + "\r\n");

     

  for (int j = 0; j < count; j++)

  f.write("\nProject"+ projectIncluded[j] +" " +wk[projectIncluded[j]]+ " "+ pr[projectIncluded[j]] + "\r\n");

  f.close();

      }    

  }

 

  public static void main(String[] args) throws Exception

  {

      Scanner sc = new Scanner(System.in);

      System.out.print("Enter the number of available employee work weeks: ");

      int avbWeeks = sc.nextInt();

      System.out.print("Enter the name of input file: ");

  String inputFile = sc.next();

      System.out.print("Enter the name of output file: ");

      String outputFile = sc.next();

      System.out.print("Number of projects = ");

      int projects = sc.nextInt();

      int[] workWeeks = new int[projects];

      int[] profit = new int[projects];

     

      File file = new File("C:\\Users\\gshubhita\\Desktop\\" + inputFile);

  Scanner fl = new Scanner(file);

 

  int count = 0;

  while (fl.hasNextLine()){

  String line = fl.nextLine();

  String[] x = line.split(" ");

  workWeeks[count] = Integer.parseInt(x[1]);

  profit[count] = Integer.parseInt(x[2]);

  count++;

  }

 

  knapsack(workWeeks, profit, avbWeeks, outputFile);

  }

}

Console Output:

Enter the number of available employee work weeks: 10

Enter the name of input file: input.txt

Enter the name of output file: output.txt

Number of projects = 4

Output.txt:

Number of projects available: 4

Available employee work weeks: 10

Number of projects chosen: 2

Total profit: 46

Project2 4 16

Project0 6 30

8 0
3 years ago
What are the two (2) different design elements of scratch?
Roman55 [17]

Answer: There is four elements of Scratch. The stage, the sprites, the script and the programming palette.

Explanation:

6 0
2 years ago
Is the LED an actuator?
baherus [9]
Yes led is an actuator
7 0
3 years ago
Read 2 more answers
Other questions:
  • A Wheatstone bridge initially has resistances equal to R1 = 200Ω, R2 = 400Ω, R3=500Ω and R4=600Ω. For an input voltage of 5V, de
    12·1 answer
  • Write cout statements with stream manipulators that perform the following:
    8·1 answer
  • Air enters the compressor of an ideal cold air-standard Brayton cycle at 100 kPa, 300 K, with a mass flow rate of 6 kg/s. The co
    11·1 answer
  • A westbound section of freeway currently has three 12-ft wide lanes, a 6-ft right shoulder, and no ramps within 3 miles upstream
    6·1 answer
  • Show that J/kg and m^2/s^2 are the same.
    8·1 answer
  • Air at 80 kPa and 10°C enters an adiabatic diffuser steadily with a velocity of 150 m/s and leaves with a low velocity at a pre
    11·1 answer
  • Can anyone answer this question
    15·1 answer
  • What type of degree is needed to be an architect?
    13·2 answers
  • What does drivetrain mean in coding?
    6·1 answer
  • Blind spots around a large vehicle are _________________ than the blind spots around a car.
    10·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!