Physics, asked by landaramana4, 7 months ago

A 25 mm dia. orifice connects two tanks. Water levels on
the two sides are 2.0 m and 1.0 m above the axis of the
orifice. Calculate the discharge through the orifice. Take
Cd = 0.61.​

Answers

Answered by Anonymous
0

Explanation:

&lt;!doctype html&gt;</p><p>&lt;html lang ="en"&gt;</p><p>&lt;head&gt;function clock() {</p><p>  var now = new Date();</p><p>  var ctx = document.getElementById('canvas').getContext('2d');</p><p>  ctx.save();</p><p>  ctx.clearRect(0, 0, 150, 150);</p><p>  ctx.translate(75, 75);</p><p>  ctx.scale(0.4, 0.4);</p><p>  ctx.rotate(-Math.PI / 2);</p><p>  ctx.strokeStyle = 'black';</p><p>  ctx.fillStyle = 'white';</p><p>  ctx.lineWidth = 8;</p><p>  ctx.lineCap = 'round';</p><p></p><p>  // Hour marks</p><p>  ctx.save();</p><p>  for (var i = 0; i &lt; 12; i++) {</p><p>    ctx.beginPath();</p><p>    ctx.rotate(Math.PI / 6);</p><p>    ctx.moveTo(100, 0);</p><p>    ctx.lineTo(120, 0);</p><p>    ctx.stroke();</p><p>  }</p><p>  ctx.restore();</p><p></p><p>  // Minute marks</p><p>  ctx.save();</p><p>  ctx.lineWidth = 5;</p><p>  for (i = 0; i &lt; 60; i++) {</p><p>    if (i % 5!= 0) {</p><p>      ctx.beginPath();</p><p>      ctx.moveTo(117, 0);</p><p>      ctx.lineTo(120, 0);</p><p>      ctx.stroke();</p><p>    }</p><p>    ctx.rotate(Math.PI / 30);</p><p>  }</p><p>  ctx.restore();</p><p> </p><p>  var sec = now.getSeconds();</p><p>  var min = now.getMinutes();</p><p>  var hr  = now.getHours();</p><p>  hr = hr &gt;= 12 ? hr - 12 : hr;</p><p></p><p>  ctx.fillStyle = 'black';</p><p></p><p>  // write Hours</p><p>  ctx.save();</p><p>  ctx.rotate(hr * (Math.PI / 6) + (Math.PI / 360) * min + (Math.PI / 21600) *sec);</p><p>  ctx.lineWidth = 14;</p><p>  ctx.beginPath();</p><p>  ctx.moveTo(-20, 0);</p><p>  ctx.lineTo(80, 0);</p><p>  ctx.stroke();</p><p>  ctx.restore();</p><p></p><p>  // write Minutes</p><p>  ctx.save();</p><p>  ctx.rotate((Math.PI / 30) * min + (Math.PI / 1800) * sec);</p><p>  ctx.lineWidth = 10;</p><p>  ctx.beginPath();</p><p>  ctx.moveTo(-28, 0);</p><p>  ctx.lineTo(112, 0);</p><p>  ctx.stroke();</p><p>  ctx.restore();</p><p> </p><p>  // Write seconds</p><p>  ctx.save();</p><p>  ctx.rotate(sec * Math.PI / 30);</p><p>  ctx.strokeStyle = '#D40000';</p><p>  ctx.fillStyle = '#D40000';</p><p>  ctx.lineWidth = 6;</p><p>  ctx.beginPath();</p><p>  ctx.moveTo(-30, 0);</p><p>  ctx.lineTo(83, 0);</p><p>  ctx.stroke();</p><p>  ctx.beginPath();</p><p>  ctx.arc(0, 0, 10, 0, Math.PI * 2, true);</p><p>  ctx.fill();</p><p>  ctx.beginPath();</p><p>  ctx.arc(95, 0, 10, 0, Math.PI * 2, true);</p><p>  ctx.stroke();</p><p>  ctx.fillStyle = 'rgba(0, 0, 0, 0)';</p><p>  ctx.arc(0, 0, 3, 0, Math.PI * 2, true);</p><p>  ctx.fill();</p><p>  ctx.restore();</p><p></p><p>  ctx.beginPath();</p><p>  ctx.lineWidth = 14;</p><p>  ctx.strokeStyle = '#325FA2';</p><p>  ctx.arc(0, 0, 142, 0, Math.PI * 2, true);</p><p>  ctx.stroke();</p><p></p><p>  ctx.restore();</p><p></p><p>  window.requestAnimationFrame(clock);</p><p>}</p><p></p><p>window.requestAnimationFrame(clock);

Similar questions