OE 7. zad

Size
2,854 Kb
Views
14,168

How do I make an oe 7. zad?

U prikazanom spoju trošila vatmetar pokazuje snagu Pw. Izračunajte struju koju pokazuje ampermetar, napon i prividnu snagu izvora!. What is a oe 7. zad? How do you make a oe 7. zad? This script and codes were developed by Mihovil Ilakovac on 31 October 2022, Monday.

OE 7. zad Previews

OE 7. zad - Script Codes HTML Codes

<!DOCTYPE html>
<html >
<head> <meta charset="UTF-8"> <title>OE 7. zad</title> <link rel='stylesheet prefetch' href='https://cdnjs.cloudflare.com/ajax/libs/skeleton/2.0.4/skeleton.min.css'> <link rel="stylesheet" href="css/style.css">
</head>
<body> <div id="root"> <h2>Prvo sami probajte, onda ovdje provjerite!</h2> <p>Izračunamo ukupnu impedanciju trošila. Kut &phi; kod impedancije jest upravo kut &phi; kod formule <code> P = U * I * cos(&phi;)</code>. Iz toga dobijemo lagano U * I što je zapravo prividna snaga tj. S. Također nam je poznat i Ohmov zakon i preko <code>S = U * I</code> i <code>I = U / Z</code> dobijemo I i U. </p> <img src="http://storage9.static.itmages.com/i/15/1216/h_1450298016_8383131_9d0f88a7da.jpeg" alt="" /> <div class="form-group"> R = <input type="text" v-model="R" placeholder="Unesi R"/> V </div> <div class="form-group"> X = <input type="text" v-model="X" placeholder="Unesi X"/> V </div> <div class="form-group"> Pw = <input type="text" v-model="Pw" placeholder="Unesi Pw"/> W </div> <div> <button @click="calc">Izracunaj</button> </div> <div v-if="I && U && S"> <strong>Rješenja</strong><br /> I = {{ I | round}} A <br /> U = {{ U | round }} V<br /> S = {{ S | round }} V<br /> Q = {{ Q | round }} VAr </div>
</div> <script src='https://cdnjs.cloudflare.com/ajax/libs/vue/1.0.8/vue.min.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/mathjs/2.4.1/math.min.js'></script> <script src="js/index.js"></script>
</body>
</html>

OE 7. zad - Script Codes CSS Codes

img { max-width: 100%;
}
.form-group { display: inline-block; margin-right: 15px;
}

OE 7. zad - Script Codes JS Codes

var trenutnaVrijednost = function(ef, f, t, alpha) { return ef * Math.sqrt(2) * Math.sin(2 * Math.PI * f * t * 1e-3 + alpha);
};
var toRad = function(stupnjevi) { return (parseFloat(stupnjevi) / 360) * 2 * Math.PI;
}
Vue.filter('round', function(value) { return math.round(value, 2);
});
Vue.filter('uStupnjeve', function(value) { return value * (180 / Math.PI);
});
new Vue({ el: "#root", methods: { calc: function() { var Z1 = math.complex(this.R, this.X); var Z2 = Z1; var Z = math.divide(math.multiply(Z1, Z2), math.add(Z1, Z2)).toPolar(); this.S = this.Pw / math.cos(Z.phi); this.Q = this.S * math.sin(Z.phi); this.I = math.sqrt(this.S / Z.r); this.U = math.sqrt(this.S * Z.r); } }, data: function() { return { R: 4, X: 4, Pw: 333, I: undefined, U: undefined, S: undefined, Q: undefined }; }
})
OE 7. zad - Script Codes
OE 7. zad - Script Codes
Home Page Home
Developer Mihovil Ilakovac
Username infomiho
Uploaded October 31, 2022
Rating 3
Size 2,854 Kb
Views 14,168
Do you need developer help for OE 7. zad?

Find the perfect freelance services for your business! Fiverr's mission is to change how the world works together. Fiverr connects businesses with freelancers offering digital services in 500+ categories. Find Developer!

Mihovil Ilakovac (infomiho) Script Codes
Create amazing video scripts with AI!

Jasper is the AI Content Generator that helps you and your team break through creative blocks to create amazing, original content 10X faster. Discover all the ways the Jasper AI Content Platform can help streamline your creative workflows. Start For Free!