后室钠论坛――基础电力教程#1
评分: +2+x
:root {
 
/* 常规颜色 */
 
    --sns-base-text-color: 0, 0, 0;
    --sns-border-color: var(--sns-base-text-color);
    --sns-gui-color: 100, 100, 100;
    --sns-button-color: 60, 60, 60;
    --sns-pressed-button-a-color: 48, 157, 219;
    --sns-pressed-button-b-color: 0, 200, 0;
    --sns-pressed-button-c-color: 200, 0, 0;
    --sns-pressed-button-d-color: 48, 157, 219;
    --sns-pressed-button-e-color: 48, 157, 219;
    --sns-locate-link-color: 138, 137, 136;
    --sns-normal-link-color: 2, 117, 224;
    --sns-intro-background-color: 0, 0, 0;
 
/* 账号颜色 */
 
    --administrator-account-color: 186, 186, 32;
    --general-account-color: 119, 111, 227;
 
/* 深色模式下的颜色 */
 
    --dark-sns-base-text-color: 255, 255, 255;
    --dark-sns-border-color: 190, 190, 190;
    --dark-sns-pressed-button-a-color: 48, 157, 219;
    --dark-sns-pressed-button-b-color: 90, 197, 90;
    --dark-sns-pressed-button-c-color: 197, 90, 90;
    --dark-sns-pressed-button-d-color: 48, 157, 219;
    --dark-sns-pressed-button-e-color: 48, 157, 219;
    --dark-sns-gui-color: 126, 124, 120;
    --dark-sns-button-color: 180, 180, 180;
    --dark-sns-locate-link-color: 200, 199, 198;
    --dark-sns-normal-link-color: 36, 149, 255;
    --dark-administrator-account-color: 224, 224, 80;
    --dark-general-account-color: 176, 170, 255;
 
/* 账号头像图片的尺寸 */
 
    --post-account-image-size: clamp(2.125rem, 1.761rem + 1.82vw, 3.125rem);
 
/* 按钮使用的 Fontawesome 字符 */
 
    --sns-button-a-content: "\f0e5";
    --sns-pressed-button-a-content: "\f075";
    --sns-button-b-content: "\f087";
    --sns-pressed-button-b-content: "\f164";
    --sns-button-c-content: "\f088";
    --sns-pressed-button-c-content: "\f165";
    --sns-button-d-content: "\f097";
    --sns-pressed-button-d-content: "\f02e";
    --sns-button-e-content: "\f08e";
    --sns-pressed-button-e-content: var(--sns-button-e-content);
 
}
 
/* 帖子整体 */
 
.post-wrap {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgb(var(--sns-border-color));
    border-bottom: 1px solid rgb(var(--sns-border-color));
}
 
.sns-intro + .sns-intro .post-wrap,
.sns-intro + br + .sns-intro .post-wrap,
.sns-intro + br + br + .sns-intro .post-wrap,
.sns-intro + br + br + br + .sns-intro .post-wrap,
.sns-intro + br + br + br + br + .sns-intro .post-wrap {
  border-top: none;
}
 
.post-wrap:not(.post-reply-false) {
    margin-left: 1.5rem;
    padding-left: 0.5rem;
}
 
/* 帖子版头 */
 
.post-header {
    display: grid;
    grid-template-areas:
        "sender-image sender-info sender-more"
        "sender-image sender-locate sender-locate";
    grid-template-columns: calc(var(--post-account-image-size) + 6px) 1fr 24px;
    grid-template-rows: 1fr 1fr;
    padding-top: 1.2rem;
    width: 100%;
}
 
.sender-image {
    grid-area: sender-image;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
 
.account-image {
    height: var(--post-account-image-size);
    width: var(--post-account-image-size);
    overflow: clip;
    overflow-clip-margin: content-box;
    object-fit: cover;
    border: 1px solid rgb(var(--sns-gui-color));
    border-radius:50%;
    position: relative;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
 
.sender-info {
    grid-area: sender-info;
    padding-left: 6px;
    vertical-align: middle;
    left: 55px;
    width: 100%;
}
 
.sender-info span {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: larger;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}
 
.sender-info .sender-account-name {
    --wght: 700;
    color: rgb(var(--sns-base-text-color));
    font-weight: 700;
    padding-right: 0.5rem;
}
 
.sender-info .sender-account-id {
    --wght: 700;
    color: rgb(var(--sns-gui-color));
    font-weight: 700;
}
 
.sender-info .sender-post-time {
    color: rgb(var(--sns-gui-color));
}
 
.sender-post-time.time-false {
    display: none;
}
 
.sender-more {
    grid-area: sender-more;
    color: rgb(var(--sns-gui-color));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}
 
.sender-locate {
    grid-area: sender-locate;
    color: rgb(var(--sns-gui-color));
    padding-left: 6px;
    vertical-align: middle;
    width: 100%;
}
 
.sender-locate.locate-false {
    display: none;
}
 
.sns-locate-link.locate-link-false {
    pointer-events: none;
}
 
.sns-locate-link:is(*, :hover, :active, :focus, :focus-within) {
    color:rgb(var(--sns-locate-link-color));
}
 
/* 帖子正文 */
 
.post-body {
    padding-left: calc(var(--post-account-image-size) + 6px);
    position: relative;
    border: none;
    color: rgb(var(--sns-base-text-color));
    padding-top: 2rem;
    font-size: clamp(0.97rem, 0.923rem + 0.24vw, 1.1rem);
}
 
.post-body :is(a, a.visited, a.newpage):is(*, :hover, :active, :focus, :focus-within) {
    color: rgb(var(--sns-normal-link-color));
}
 
.post-header:not(:has(.hide-locate-false)) + .post-body {
    padding-top: 0;
}
 
.attached-image:not(.attached-image-false) {
    border: 1px solid rgb(var(--sns-gui-color));
    border-radius: 16px;
    margin-top: 1em;
    user-drag: none;
    -webkit-user-drag: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-user-select: none;
    width: calc(100% - 3px);
}
 
.attached-image-false {
    display: none;
}
 
/* 帖子末尾 */
 
.post-footer {
    padding: 1rem 0 1rem calc(var(--post-account-image-size) + 6px);
    color: rgb(var(--sns-gui-color));
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}
 
.post-footer-button {
    font-size: clamp(0.625rem, 0.475rem + 0.75vw, 1.038rem);
    color: rgb(var(--sns-button-color));
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    line-height: .75rem;
    vertical-align: -15%;
    position: relative;
}
 
.post-footer-button .fa {
    font-size: 1.33333333em;
    text-rendering: auto;
    transform: translate(0, 0);
    transition: color .3s cubic-bezier(.4,0,.2,1);
}
 
.post-footer-button-number {
    position: absolute;
    padding-left: 1.5em;
    transition: color .3s cubic-bezier(.4,0,.2,1);
}
 
.post-footer-button-a:hover,
.post-footer-button-a:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-a-color));
}
 
.post-footer-button-a .fa::before {
    content: var(--sns-button-a-content);
}
 
.post-footer-button-a:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-a-color));
    content: var(--sns-pressed-button-a-content);
}
 
.post-footer-button-b:hover,
.post-footer-button-b:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-b-color));
}
 
.post-footer-button-b .fa::before {
    content: var(--sns-button-b-content);
}
 
.post-footer-button-b:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-b-color));
    content: var(--sns-pressed-button-b-content);
}
 
.post-footer-button-c:hover,
.post-footer-button-c:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-c-color));
}
 
.post-footer-button-c .fa::before {
    content: var(--sns-button-c-content);
}
 
.post-footer-button-c:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-c-color));
    content: var(--sns-pressed-button-c-content);
}
 
.post-footer-button-d:hover,
.post-footer-button-d:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-d-color));
}
 
.post-footer-button-d .fa::before {
    content: var(--sns-button-d-content);
}
 
.post-footer-button-d:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-d-color));
    content: var(--sns-pressed-button-d-content);
}
 
.post-footer-button-e:hover,
.post-footer-button-e:not(.button-press-false) {
    color: rgb(var(--sns-pressed-button-e-color));
}
 
.post-footer-button-e .fa::before {
    content: var(--sns-button-e-content);
}
 
.post-footer-button-e:not(.button-press-false) .fa::before {
    color: rgb(var(--sns-pressed-button-e-color));
    content: var(--sns-pressed-button-e-content);
}
 
/* sns-intro */
 
.sns-intro:not(.intro-false) {
    margin: 2em -6em;
    padding: 6em 6em 27em 6em;
    background: linear-gradient(rgb(var(--sns-intro-background-color)), rgb(var(--sns-intro-background-color)), transparent); z-index: -2;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    --sns-base-text-color: var(--dark-sns-base-text-color);
    --sns-border-color: var(--dark-sns-border-color);
    --sns-pressed-button-a-color: var(--dark-sns-pressed-button-a-color);
    --sns-pressed-button-b-color: var(--dark-sns-pressed-button-b-color);
    --sns-pressed-button-c-color: var(--dark-sns-pressed-button-c-color);
    --sns-pressed-button-d-color: var(--dark-sns-pressed-button-d-color);
    --sns-pressed-button-e-color: var(--dark-sns-pressed-button-e-color);
    --sns-gui-color: var(--dark-sns-gui-color);
    --sns-button-color: var(--dark-sns-button-color);
    --sns-locate-link-color: var(--dark-sns-locate-link-color);
    --administrator-account-color: var(--dark-administrator-account-color);
    --general-account-color: var(--dark-general-account-color);
}
 
.sns-intro:not(.intro-false) .post-wrap {
    border: none;
}
 
@media only screen and (max-width: 1040px) {
    .sns-intro:not(.intro-false) {
        margin: 2em 0;
        padding: 6em 3em 27em 3em;
    }
}
 
@media only screen and (max-width: 540px) {
    .sns-intro:not(.intro-false) {
        padding: 6em 0 27em 0;
    }
}

论坛文章精选文/Venti_0616
编/Andantono


编辑序:钠论坛(The backrooms NozArim BBS),自2021年建立以来,便诞生了无数优秀的创作者和作品,在创始人暨站长MireZon的带领下,逐渐形成了一个线上国际化的讨论社区。本期小编就选用了一篇Venti_0616所创作的一篇实用指南,希望对大家能有帮助。

· 3 days

最近接到了M.E.G.的邀请去构建基地的电力系统,正好出一期教学,让大家掌握一些实用的电力技巧。#技能教程
false
· 1 day

qpzc,hqlm
false
· 1 day

捉,#发现站长
false
· 1 day

喵喵喵?这什么阴,我现在就切到Level 11去真实你们…
false





前言
大家好,我是 Venti_0616,这段时间我一直在Level 1待着,见过很多基地因为没有稳定照明陷入困难,也试过用临时光源勉强支撑,最后发现只有自己动手做的电力设备,才是最靠谱的生存保障。今天我把自己反复测试、修改了无数次的电力生存方法完整写出来,全程只用随处能捡到的废弃废料,没有特殊工具,没有专业零件,每一个制作步骤我都写得足够细致,就是为了大家能跟着一步步做,甚至可以直接照着文字配制作步骤的图片,不管你有没有电学基础,只要动手就能做出来。

在开始讲具体制作之前,我想先跟大家说清楚,我们做的不是那种大功率电路,全程都是安全的低压电力,不会有触电风险,也不会产生危险的电火花,所有制作逻辑都是围绕 “能找到材料、做得出来、用得安全” 这三点来的,没有花里胡哨的技巧,全是实打实能落地的实用方法。首先我们要明确,在很多层级,都是物资全靠捡拾的环境,电力的核心作用就是照明,这是最基础也最关键的,其次才是储存电力、自主发电,所以我们先从最紧急的手电筒开始讲,所有用到的材料,都是废弃塑料瓶、旧电线、碎金属片、没用的电池、灯珠这类随处可见的废料,不用特意去找稀有东西,身边翻一翻就能凑齐。

先来说制作所有电力设备都要用到的基础材料,我不分开列清单,就顺着制作会用到的顺序跟大家说,这些材料都是日常能捡到的。首先是导电用的材料,最核心的就是旧电线,不管是废弃电器里拆出来的,还是散落的碎电线都能用,电线里面的铜丝是导电最好的,没有铜丝的话,细铁丝、铝丝也能凑合用,只是导电效果差一点,应急完全足够。然后是绝缘材料,这个太重要了,能防止电路漏电短路,废弃的绝缘胶带是最好用的,实在没有的话,橡胶边角料、厚塑料片、干燥的硬纸板都能代替,只要是不导电的东西都可以。接下来是发光的核心,也就是 LED 灯珠,这个从坏掉的手电筒、旧手机屏幕、废弃指示灯上都能拆下来,LED 灯珠功耗低,LED 灯珠功耗低、亮度够、还耐用,是做照明的首选,比老式灯泡好用太多。还有电源部分,我们主要用捡到的废弃干电池、纽扣电池,很多看似没电的电池其实还有余电,足够支撑应急使用,后期我们还会做电池组把这些废电池利用起来。另外还需要一些辅助的东西,比如做外壳用的塑料瓶、金属易拉罐、硬纸筒,固定用的胶水、细绳,还有裁剪材料用的小刀、剪刀,这些都是基础工具,几乎人人都能找到。

手电筒制作
这个时候肯定就有人会问了,做手电筒有什么用啊,移动的定点光源难道不会吸引实体吗?手电筒自然是有用的,例如在岩洞系统这类层级中,总之跟着做就完了,我们主要是先熟悉一下具体架构。


首先是最简单的应急手电筒,这个十分钟就能做完,适合突然陷入黑暗、手边没有任何工具的紧急情况,全程只用拧、缠、粘三个动作。我们先拿出找到的 LED 灯珠,仔细看灯珠的两个引脚,一长一短,长的是正极,短的是负极,这个一定要记准,接反了灯不会亮。然后拿出一小段旧电线,用指甲或者小刀轻轻刮掉电线两头的绝缘皮,露出里面大概一厘米的铜丝,注意不要把铜丝弄断了。接下来把一根电线的铜丝紧紧缠在灯珠的长引脚上,另一根缠在短引脚上,缠的时候要绕紧,多缠几圈,保证铜丝和引脚完全接触,不然会接触不良灯不亮。缠好之后,拿出一节有残电的废弃电池,电池凸起的那一头是正极,平面的是负极,把缠在灯珠长引脚的电线贴在电池正极,短引脚的电线贴在电池负极,只要电池还有电,灯珠瞬间就会亮起来,这时候一个最基础的应急手电就成型了。接下来我们要把它固定住,不然用的时候一碰就灭,用绝缘胶带把电线和电池的连接处死死缠紧,每一个接头都要缠满,既固定又绝缘,最后找一个小塑料瓶或者易拉罐,把电池和电路塞进去,只把灯珠露在瓶口,用胶带把灯珠固定好,一个应急手电就彻底做完了,这个版本虽然没有开关,亮了就没法关,续航也非常不稳定,但胜在速度快,材料随手可得,绝境里能救急。

然后是我们日常使用最多的标准长效手电筒,这个是我最推荐的版本,续航够、有开关、便携耐用,做起来也不难,材料只比应急款多一个小开关和几节电池。首先我们先做电池仓,找三片废弃干电池,把它们按照正极对负极的顺序首尾相连叠在一起,这就是串联,串联之后电压更高,灯更亮,续航也更久,用金属片或者硬纸板把这三节电池裹成一个圆筒,用胶带缠紧,做成一个固定的电池组,电池组一头是最上面电池的正极,另一头是最下面电池的负极。接下来开始接电路,先拿出找到的小型开关,这种开关从旧玩具、坏电器上都能拆到,就是按一下开、再按一下关的那种,把电池组正极的电线接在开关的一个接头上,用胶带缠紧,开关的另一个接头接一根电线,连到 LED 灯珠的长引脚,灯珠的短引脚直接接一根电线连回电池组的负极,这样整个电路就通了,按开关就能控制灯的亮灭。接好之后先测试一下,按开关灯亮,再按就灭,说明电路没问题,要是不亮就检查一下接头有没有缠紧、正负极有没有接反。

测试没问题之后,我们开始做外壳,找一个粗细合适的塑料硬筒,没有的话用大塑料瓶剪成长筒也可以,把电池组塞进筒底,用胶带固定住,开关粘在筒身外侧,方便手指按到,灯珠放在筒的顶端,用透明塑料片盖住灯珠做灯罩,防止灯珠被碰坏,最后把所有露在外面的电线、接头都用绝缘胶带包好,一点金属都不要露出来,避免漏电或者短路,这个标准手电做完之后,续航能有四五个小时,亮度足够照亮周围环境,日常探索、移动都能用,是最实用的版本。

最后是手电筒的加固方案,适合环境比较恶劣的情况,比如地面潮湿、容易磕碰的地方,核心就是做好密封和防摔。我们直接用密封的小塑料罐做外壳,这种罐子密封性好,防水防潮,先把标准手电的电路和电池组做好,然后在塑料罐的盖子上钻一个小孔,把 LED 灯珠从孔里穿出来,用胶水把灯珠和盖子的缝隙封死,防止水汽进去,罐子里的所有电路接头,除了用绝缘胶带缠,还要在外面裹一层橡胶边角料,进一步加固绝缘,电池组周围用泡沫或者碎布塞满,防止晃动磕碰,最后把罐子盖紧,用胶带把罐口缠一圈密封,这样做出来的手电防摔、防水、防短路,在恶劣环境里也能放心用,续航和标准款一样,耐用性却强很多。

电力的储存以及发电
讲完手电筒,接下来就是核心的自主发电,毕竟捡到的废弃电池总有用完的时候,只有自己能发电,才能实现电力自给自足,我给大家整理了三种最容易做的发电方式,都是用废料做,不用专业设备,其中手摇发电机是最通用的,不管什么环境都能做,完全不挑地方。手摇发电机的原理就是磁铁在线圈里转动产生电流,做起来也很简单,首先我们找一个塑料小筒,比如胶卷筒、笔芯筒都可以,把旧电线里的铜丝抽出来,一圈一圈紧密地缠在塑料筒上,缠的时候要整齐,不要重叠,大概缠一百到一百五十圈就够了,线圈的两头要留出足够长的电线,刮掉绝缘皮备用,这就是发电的核心线圈。然后找一块磁铁,从旧喇叭、坏电机、玩具里都能拆到,再找一根细木棍或者金属棒做手摇柄,把磁铁牢牢绑在手摇柄的一头,把绑好磁铁的手摇柄插进缠好线圈的塑料筒里,保证磁铁能在筒里自由转动,不会碰到线圈的内壁。接下来做传动的部分,要是有废弃钟表里的小齿轮,就把齿轮装在手摇柄和磁铁之间,转动的时候更省力,没有齿轮也没关系,直接用手摇就行。然后把线圈两头的电线接在我们之前做的电池组或者手电筒上,这时候用手转动手摇柄,线圈里的磁铁跟着转,就会产生电流,手电筒就会亮起来,转得越快,电流越大,灯越亮。整个发电机做好之后,找一个小塑料箱把线圈和磁铁部分装起来,只把手摇柄露在外面,防止灰尘和杂物进去,用的时候只要摇动手柄,就能持续发电,既能直接给手电供电,也能给废电池充电,完全不用消耗物资,只需要一点体力,而且全程没有噪音,不会引来不必要的麻烦,是最适合生存的发电方式。

第二种是温差发电机,这个适合有温度差的地方,比如一边热一边冷的环境,不用手摇,完全静默发电,原理就是利用冷热温差产生电流。核心零件是从废弃电子设备上拆下来的温差电片,这个零件很小,薄薄的一片,一边是热端,一边是冷端,我们找两块导热的金属片,一片贴在温差电片的热端,另一片贴在冷端,然后把热端的金属片贴在发热的物体上,冷端的金属片放在凉快的地方,只要两边有温度差,电片就会产生电流,用电线把电流引出来,就能给设备供电了。这个发电机的好处是不用人管,放着就能自己发电,24 小时不停,完全不费体力,只是需要有温度差的环境,没有的话就用手摇的就行。

第三种是化学应急发电机,这个是极致绝境下的备用方案(纯整活,没啥太大的实际作用),无任何机械零件,只用金属和液体就能发电。找两片不同的金属,一片铜片、一片锌片,这两种金属从废弃五金件、旧电池外壳上都能找到,再找一个透明的小容器,比如塑料瓶剪一半,把铜片和锌片平行放进容器里,注意两片金属不要碰到一起,然后倒入电解质液体,最容易找到的就是过滤后的干净积水,有条件的话用专用的电解质液体效果更好,液体要淹没金属片的三分之二,最后用电线分别连接铜片和锌片,电线另一头接 LED 灯珠,就会产生微弱的电流让灯珠亮起来。这个方法电流很小,只能带动小灯珠,续航也短,但是材料太容易找了,实在没有其他发电方式的时候,能救一时之急。
logo.svg

有了发电的方法,还要学会储存电力,不然发出来的电用不完就浪费了,我们可以用废弃电池做简易电池组,把捡到的废电池都收集起来,先用手电测试一下,把还有余电的挑出来,然后按照需要串联或者并联,串联是正极对负极,提升电压,带动更亮的灯,并联是正极对正极、负极对负极,提升续航,用的时间更久,电池之间用塑料片隔开,防止短路,外面用绝缘胶带缠紧,做成一个固定的电池组,就能把发出来的电存起来,用的时候直接接设备就行。另外发电的电流会有波动,直接接设备容易烧坏灯珠,我们可以做一个简单的稳压装置,从废弃电路板上拆下来小电阻和电容,把电阻串在电路的正极,电容并联在输出的两头,用胶带固定好,就能让电流更稳定,没有电阻电容也没关系,只是设备寿命会短一点,不影响正常使用。还有一个最重要的安全细节,就是在电路里加一根细铜丝当保险丝,把细铜丝串在正极电路里,正常用电的时候铜丝能导电,一旦电路短路、电流过大,细铜丝会瞬间烧断,直接切断电路,防止产生火花或者烧坏设备,这个小细节一定要做,能避免很多危险。
2019103121034370362.jpg!cc0.cn.jpg

峡谷中的灯光


本期文章精选就到这里了,感谢观看,编辑组日后还会把更多精品文章整理并发布,让大家看到。

本站不遵循 CC 协议