在变压器温度描述中:工作温度是105度,最高温升应小于60K 其中60K是啥意思?60K是怎么计算出来的?谢谢

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在变压器温度描述中:工作温度是105度,最高温升应小于60K 其中60K是啥意思?60K是怎么计算出来的?谢谢相关的知识,希望对你有一定的参考价值。

K---温升的单位,开尔文 60K就是对环境的温升值是60开尔文
最高环境温度45度,45+60=105 (度)
参考技术A 60K是60开尔文(相当于60摄氏度)
这个最大温升是根据变压器使用的材料确定的
参考技术B 变压器的温升限值是以变压器使用寿命(主要是绝缘材料的寿命)为基础。油浸式电力变压器一般是A级绝缘材料,它的最高允许温度为105℃。
当周围环境温度最高气温为40℃时,则线圈最高温度为105℃-40℃=65℃(即允许的温升65℃,因为是相对增加值,所以叫65k)。
变压器设计人员设计计算线圈温升时,一般会将线圈温度限值降低5℃来计算,以留有一定的安全系数(裕度),65℃-5℃=60k,所以就是60k的来历。说明这台变压器线圈温升是有保证的,厂家会多花一些线圈铜材的成本的。

在我的 Java 代码中查找最大值和最小值

【中文标题】在我的 Java 代码中查找最大值和最小值【英文标题】:Finding the largest value and the smallest in my code in Java 【发布时间】:2017-03-19 12:20:23 【问题描述】:

我正在创建一个代码,让用户输入不同种类的温度。

用户应该能够输入:

周数 该人在一周内测量了多少次体温。 每周的温度。

当用户输入信息后,程序应显示已输入的温度。

程序应每周显示最低温度。 该程序应每周显示最高温度。 该程序应在所有几周内显示最低和最高温度。 该程序应显示每周和所有星期的平均温度。

这是我已经走了多远:


    System.out.println ("Temperatures\n");


    Scanner    in = new Scanner (System.in);
    in.useLocale (Locale.US);

    //Here is where information is being put in
    System.out.print ("amount of weeks: ");
    int    amountOfWeeks = in.nextInt ();
    System.out.print ("measuring temperature per week: ");
    int    measurementsPerWeek = in.nextInt ();

    //array to store the information
    double[][]    t = new double[amountOfWeeks + 1][measurementsPerWeek + 1];

    //mata in temperaturerna
    for (int week = 1; week <= amountOfWeeks; week++)
    
        System.out.println ("temperatures - week " + week + ":");
        for (int measurement = 1; measurement <= measurementsPerWeek; measurement++)
            t[week][measurement] = in.nextDouble ();
    
    System.out.println ();

    //show the temperatures
    System.out.println ("temperatures");
    for (int week = 1; week <= amountOfWeeks; week++)
    
        for (int measurement = 1; measurement <= measurementsPerWeek; measurement++)
            System.out.print (t[week][measurement] + " ");

        System.out.println ();
        

    //lowest, highest, the sum of all temperatures, and average temp per week
    double[]    minT = new double[amountOfWeeks + 1];
    double[]    maxT = new double[amountOfWeeks + 1];
    double[]    sumT = new double[amountOfWeeks + 1];
    double[]    averageT = new double[amountOfWeeks];

    // write the code to find the lowest temperature for the first week



    //´Lowest, highest, sum, average for all weeks
    double    minTemp = minT[1];
    double    maxTemp = maxT[1];
    double    sumTemp = sumT[1];
    double    averageTemp = 0;



【问题讨论】:

导入 java.util.*; //Scanner, Locale class Temperatures public static void main (String[] args) 应该在代码的开头 具体来说,我只需要一些帮助来开始了解如何在我的代码中找到最低温度。 你可以看看DoubleSummaryStatistics 【参考方案1】:

在列表中找到最大值的一般算法是遍历列表并存储到目前为止遇到的最大值。例如,如果你有 10 个数字存储在一个整数数组中:

int max=intArray[0];
for (int i=1; i<10;i++)
         if (intArray[i]>max)
             max=intArrray[i];

【讨论】:

【参考方案2】:

将数组放入流中,使用 min() 方法[或 max(),或 average()] 得到 OptionalDouble 值。

OptionalDouble minValue = Arrays.stream(myArray).min();

然后,如果您只想打印它,请将 ifPresent() 与 lambda 表达式或方法引用一起使用:

minValue.ifPresent(e -> System.out.println(e));

minValue.ifPresent(System.out::println);

或者如果你想做其他事情,你可以使用 get() 方法。

【讨论】:

【参考方案3】:

你可以声明:

double min = Double.POSITIVE_INFINITY;
double max = Double.NEGATIVE_INFINITY;

每当您读取温度时,您都会测试它是新的最大值还是最小值,并在必要时更新它们,如下所示:

...
t[week][measurement] = in.nextDouble ();
if (t[week][measurement] < min) min = t[week][measurement];
if (t[week][measurement] > max) max = t[week][measurement];
...

【讨论】:

【参考方案4】:

我现在查看了此处发布的答案并将其写入我的代码:

double min = Double.MAX_VALUE;

for (int week = 1; week<= amountOfWeeks ; week++)

    for (int measurement = 1; measurement <= measurementsPerWeek; measurement ++)
         if (t[week][measurement] < min)
         min = t[week][measurement];

         System.out.println ("min is:" + min);
     

现在代码遍历所有周的所有输入的输入数据,并找到最小数字并打印它。所以基本上,如果第一周的第一个温度是 1,并且用户没有输入任何低于 1 的值,我的代码将把这个数字作为所有星期的最小值。

我怎样才能改变它,以便它也为自己找到每周的最小输入?

【讨论】:

以上是关于在变压器温度描述中:工作温度是105度,最高温升应小于60K 其中60K是啥意思?60K是怎么计算出来的?谢谢的主要内容,如果未能解决你的问题,请参考以下文章

油浸式变压器绕组温升限值为65K,k是啥意思

LED驱动上Ta,Tc各表示啥温度

当LED 芯片内结温升高10℃,光通量就会衰减1%,LED 的寿命就会减少50%? 这说法对不?有理论或实验支持吗

cpu温度检测方法 cpu的温度多少正常

为啥温度有最低值没有最高值?

不用最高温度和最低温度