Предмет: Физика, автор: erominroman73

визначте напруженість поля заряду 36 нКл у точці віддаленій від нього на 9 см​

Ответы

Автор ответа: fizikyadershik68
1

Ответ: 40 кВ/м.

Объяснение:

Здравствуйте, спасибо за задачу. Это классическая задачка на напряжённость поля.

Дано:

q = 36 * 10^-9 Кл

r = 9 * 10^-2 м

k = 9 * 10^9 Н * м^2/Кл^2
Найти:

E - ?

E = kq/r^2 = 9*10^9 * 36*10^-9/( 9*10^-2 )^2 = 40 000 В/м = 40 кВ/м.

С уважением, Владимир.

Похожие вопросы
Предмет: Информатика, автор: maxkipeniak
package com.example.newgenommod;

import net.minecraft.block.BlockState;
import net.minecraft.block.CropsBlock;
import net.minecraft.item.ItemStack;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.math.BlockRayTraceResult;
import net.minecraft.world.World;

public class GenomCropBlock extends CropsBlock {

public GenomCropBlock(Properties builder) {
super(builder);
}

@Override
public void onBlockActivated(BlockState state, World worldIn, BlockPos pos, net.minecraft.entity.player.PlayerEntity player, net.minecraft.util.Hand handIn, BlockRayTraceResult hit) {
if (!worldIn.isRemote) {
ItemStack heldItem = player.getHeldItem(handIn);
if (heldItem.isEmpty()) {
// When right-clicked with an empty hand, display the genome
String genome = getGenome(state);
player.sendMessage(new StringTextComponent("Genome: " + genome));
}
}
}

// Custom method to get the genome from the block state
private String getGenome(BlockState state) {
// You'll need to implement your own logic to determine the genome based on the block state
// For demonstration purposes, I'll return a static genome string
return "xyxxzoy";
}

// Custom method to handle the growth and yield based on the genome
@Override
protected int getBonemealAgeIncrease(World worldIn) {
// You'll need to implement your own logic to calculate the bonemeal age increase
// based on the genome. For demonstration purposes, I'll return a static value.
return 1;
}

// Custom method to handle the yield based on the genome
@Override
public ItemStack getItem(IBlockReader worldIn, BlockPos pos, BlockState state) {
// You'll need to implement your own logic to calculate the yield based on the genome
// For demonstration purposes, I'll return a static item stack.
return new ItemStack(Items.WHEAT);
}
}

Як створити з цього коду майнкрафт мод (поясніть нормально не туда сюда і готово)