ファイル:3_phase_rectification_2.svg
[Wikipedia|▼Menu]

ファイル

ファイルの履歴

ファイルの使用状況

グローバルなファイル使用状況
この SVG ファイルのこの PNG プレビューのサイズ: 397 × 600 ピクセル. その他の解像度: 159 × 240 ピクセル 。317 × 480 ピクセル 。508 × 768 ピクセル 。677 × 1,024 ピクセル 。1,355 × 2,048 ピクセル 。624 × 943 ピクセル。

元のファイル ‎(SVG ファイル、624 × 943 ピクセル、ファイルサイズ: 120キロバイト)



このファイルは、ウィキメディア・コモンズから呼び出されています。

このファイルは、他のプロジェクトで使用されている可能性があります。

このファイルの解説やノートへの記入、履歴などの詳細の確認は、ウィキメディア・コモンズのファイルページ(ノート/履歴/ログ)を使用してください。
ウィキメディア・コモンズのファイルページにある説明を、以下に表示します。

概要

解説3 phase rectification 2.svgEnglish: Waveforms for a typical 3-phase half-wave and full-wave rectifiers. The top plot shows the individual three phase signals, the middle plot shows the half-wave rectifier output in solid curve and the bottom plot shows the full-wave rectifier output in solid curve. The 'T' in time is the time period of individual signals and V p e a k {\displaystyle \scriptstyle V_{\mathrm {peak} }} is the amplitude of each of the three input signals.The diagram was created using python, matplotlib and numpy.Русский: Формы сигналов трёхфазного одно- и двухполупериодного выпрямителей. Сверху - отдельные трехфазные сигналы, средний график - выход однополупериодного выпрямителя сплошной линией, нижний график - выходной сигнапBдвухполупериодного выпрямителя сплошной линией. T - период, U - напряжения.
日付2011年6月8日
原典投稿者自身による著作物
作者Krishnavedala
その他のバージョン

3 phase rectification 2.png


.svg:

英語 .svg

ロシア語 .svg

.png:

英語 .png

int .png

int .png

.jpg:

int .jpg

int .jpg

int .jpg

SVG 開発InfoField このSVGのソースコードは正しい。 この ベクター画像はMatplotlibで作成されました。
ソースコードInfoField
Python code

Source code
from matplotlib.pyplot import *from numpy import *f, Vpeak, cycles = 50., 1., 1.5fs, Tlim = 2.*f, cycles/fVavg, Vrms = Vpeak*2./pi, Vpeak/sqrt(2.)t = linspace(0,Tlim,fs*cycles)w = 2.*pi*f # 50Hz ACsignal = lambda x,p: sin(w*x+p*2.*pi/3.)def halfWave(time): s1, s2, s3 = signal(time,0.), signal(time,1.), signal(time,2.) if s1 > s2 and s1 > s3: if s2 > s3: return s1, s2 else: return s1, s3 elif s2 > s1 and s2 > s3: if s1 > s3: return s2, s1 else: return s2, s3 else: if s1 > s2: return s3, s1 else: return s3, s2 def fullWave(time): s1, s2, s3 = abs(signal(time,0.)), abs(signal(time,1.)), \ abs(signal(time,2.)) if s1 > s2 and s1 > s3: if s2 > s3: return s1, s2 else: return s1, s3 elif s2 > s1 and s2 > s3: if s1 > s3: return s2, s1 else: return s2, s3 else: if s1 > s2: return s3, s1 else: return s3, s2xTickPts = []for time in t: s1, s2, s3 = abs(signal(time,0.)), abs(signal(time,1.)), \ abs(signal(time,2.)) if s1 == s2: xTickPts = append(xTickPts, time) print time elif s2 == s3: xTickPts = append(xTickPts, time) print time elif s3 == s1: xTickPts = append(xTickPts, time) print time def myAxes(this): this.grid(True) this.set_xlim(0,Tlim) this.set_xticks(arange(0,cycles+.25,.25)/f) this.set_xticklabels([]) this.set_ylabel(r"Voltage (V)",fontsize=12) this.set_ylim(-2.*Vpeak-.1,2.*Vpeak+.1) this.set_yticks([-1.73*Vpeak,-Vpeak,0,Vpeak,1.73*Vpeak]) this.set_yticklabels([r"$-\sqrt{3}V_{\mathrm{peak} }$",r"$-V_{\mathrm{peak} }$",\ r"0",r"$V_{\mathrm{peak} }$",r"$\sqrt{3}V_{\mathrm{peak} }$"])fig = figure(figsize=(7,12))ax = fig.add_subplot(311)ax.plot(t,signal(t,0),'b',linewidth=2,label=r"$\phi=0^\circ$")ax.plot(t,signal(t,1),'r',linewidth=2,label=r"$\phi=120^\circ$")ax.plot(t,signal(t,2),'g',linewidth=2,label=r"$\phi=240^\circ$")myAxes(ax)ax.set_title(r'3-Phase signals',fontsize=12)ax.legend(loc=1, \ bbox_to_anchor=(.8,.35),\ frameon=False,handletextpad=.05)ax = fig.add_subplot(312)S, H = [], []for time in t: s, h = halfWave(time) S = append(S,s) H = append(H,h)ax.plot(t,S,'k',linewidth=2.)ax.plot(t,signal(t,0),'b--',linewidth=1.)ax.plot(t,signal(t,1),'r--',linewidth=1.)ax.plot(t,signal(t,2),'g--',linewidth=1.)myAxes(ax)ax.set_title(r"Half-wave rectification", fontsize=12) ax = fig.add_subplot(313)S, H = [], []for time in t: s, h = fullWave(time) S = append(S,s) H = append(H,h)ax.plot(t,S+H,'k',linewidth=2.)ax.plot(t,(signal(t,0)),'b--',linewidth=1.)ax.plot(t,(signal(t,1)),'r--',linewidth=1.)ax.plot(t,(signal(t,2)),'g--',linewidth=1.)myAxes(ax)ax.set_title(r"Full-wave rectification", fontsize=12) myLabel = []for i in arange(0,cycles+.25,.25): myLabel = append(myLabel,r"%.2fT"%i)# myLabel = append(myLabel,r"${}^{%.1fT}_{\pi/%.1f}$"%(i,(i*2))) ax.set_xticklabels(myLabel,fontsize=10)ax.set_xlabel(r"Time",fontsize=14) #fig.suptitle("3-phase AC rectification",fontsize=16) fig.savefig("3_phase_rectification_2.svg",bbox_inches="tight",\ pad_inches=.15)


ライセンスこの作品の著作権者である私は、この作品を以下のライセンスで提供します。.mw-parser-output .responsive-license-cc{clear:both;text-align:center;box-sizing:border-box;width:100%;justify-content:space-around;align-items:center;margin:0.5em auto;background-color:#f9f9f9;border:2px solid #e0e0e0;border-spacing:8px;display:flex}.mw-parser-output .responsive-license-cc div{margin:4px}.mw-parser-output .rlicense-text div{margin:0.5em auto}@media screen and (max-width:640px){.mw-parser-output .responsive-license-cc{flex-flow:column}.mw-parser-output .rlicense-text{order:1}}
このファイルはクリエイティブ・コモンズ
表示-継承 3.0 非移植ライセンスのもとに利用を許諾されています。あなたは以下の条件に従う場合に限り、自由に

共有 ? 本作品を複製、頒布、展示、実演できます。

再構成 ? 二次的著作物を作成できます。
あなたの従うべき条件は以下の通りです。

表示 ? あなたは適切なクレジットを表示し、ライセンスへのリンクを提供し、変更があったらその旨を示さなければなりません。これらは合理的であればどのような方法で行っても構いませんが、許諾者があなたやあなたの利用行為を支持していると示唆するような方法は除きます。

継承 ? もしあなたがこの作品をリミックスしたり、改変したり、加工した場合には、あなたはあなたの貢献部分を元の作品とこれと同一または互換性があるライセンスの下に頒布しなければなりません。
https://creativecommons.org/licenses/by-sa/3.0CC BY-SA 3.0 Creative Commons Attribution-Share Alike 3.0 truetrue

この文書は、フリーソフトウェア財団発行のGNUフリー文書利用許諾書 (GNU Free Documentation License) 1.2またはそれ以降のバージョンの規約に基づき、複製や再配布、改変が許可されます。不可変更部分、表紙、背表紙はありません。このライセンスの複製は、GNUフリー文書利用許諾書という章に含まれています。http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue
あなたは上記のライセンスから、どれか一つ以上を選択できます。

キャプション日本語このファイルの内容を1行で記述してください
このファイルに描写されている項目
題材
\u4f5c\u8005"}},"text\/plain":{"ja":{"":"\u4f5c\u8005"}}},"{\"value\":{\"entity-type\":\"property\",\"numeric-id\":2093,\"id\":\"P2093\"},\"type\":\"wikibase-entityid\"}":{"text\/html":{"ja":{"":"\u8457\u8005\u540d (\u6587\u5b57\u5217)"}},"text\/plain":{"ja":{"":"\u8457\u8005\u540d (\u6587\u5b57\u5217)"}}},"{\"value\":\"Krishnavedala\",\"type\":\"string\"}":{"text\/html":{"ja":{"P2093":"Krishnavedala","P4174":"Krishnavedala"}},"text\/plain":{"ja":{"P2093":"Krishnavedala","P4174":"Krishnavedala"}}},"{\"value\":{\"entity-type\":\"property\",\"numeric-id\":4174,\"id\":\"P4174\"},\"type\":\"wikibase-entityid\"}":{"text\/html":{"ja":{"":"\u30a6\u30a3\u30ad\u30e1\u30c7\u30a3\u30a2\u306e\u5229\u7528\u8005\u540d"}},"text\/plain":{"ja":{"":"\u30a6\u30a3\u30ad\u30e1\u30c7\u30a3\u30a2\u306e\u5229\u7528\u8005\u540d"}}},"{\"value\":{\"entity-type\":\"property\",\"numeric-id\":2699,\"id\":\"P2699\"},\"type\":\"wikibase-entityid\"}":{"text\/html":{"ja":{"":"URL"}},"text\/plain":{"ja":{"":"URL"}}},"{\"value\":\"http:\\\/\\\/commons.wikimedia.org\\\/wiki\\\/User:Krishnavedala\",\"type\":\"string\"}":{"text\/html":{"ja":{"P2699":"http:\/\/commons.wikimedia.org\/wiki\/User:Krishnavedala"}},"text\/plain":{"ja":{"P2699":"http:\/\/commons.wikimedia.org\/wiki\/User:Krishnavedala"}}}}" class="wbmi-entityview-statementsGroup wbmi-entityview-statementsGroup-P170 oo-ui-layout oo-ui-panelLayout oo-ui-panelLayout-framed">
作者

ウィキデータ項目がない値著者名 (文字列): Krishnavedalaウィキメディアの利用者名: KrishnavedalaURL: ⇒http://commons.wikimedia.org/wiki/User:Krishnavedala\u8457\u4f5c\u6a29\u306e\u72b6\u6cc1"}},"text\/plain":{"ja":{"":"\u8457\u4f5c\u6a29\u306e\u72b6\u6cc1"}}},"{\"value\":{\"entity-type\":\"item\",\"numeric-id\":50423863,\"id\":\"Q50423863\"},\"type\":\"wikibase-entityid\"}":{"text\/html":{"ja":{"P6216":"\u8457\u4f5c\u6a29\u3067\u4fdd\u8b77"}},"text\/plain":{"ja":{"P6216":"\u8457\u4f5c\u6a29\u3067\u4fdd\u8b77"}}}}" class="wbmi-entityview-statementsGroup wbmi-entityview-statementsGroup-P6216 oo-ui-layout oo-ui-panelLayout oo-ui-panelLayout-framed">
著作権の状況

著作権で保護\u5229\u7528\u8a31\u8afe"}},"text\/plain":{"ja":{"":"\u5229\u7528\u8a31\u8afe"}}},"{\"value\":{\"entity-type\":\"item\",\"numeric-id\":50829104,\"id\":\"Q50829104\"},\"type\":\"wikibase-entityid\"}":{"text\/html":{"ja":{"P275":"GNU Free Documentation License\u30d0\u30fc\u30b8\u30e7\u30f31.2\u304b\u305d\u308c\u4ee5\u964d"}},"text\/plain":{"ja":{"P275":"GNU Free Documentation License\u30d0\u30fc\u30b8\u30e7\u30f31.2\u304b\u305d\u308c\u4ee5\u964d"}}},"{\"value\":{\"entity-type\":\"item\",\"numeric-id\":14946043,\"id\":\"Q14946043\"},\"type\":\"wikibase-entityid\"}":{"text\/html":{"ja":{"P275":"CC BY-SA 3.0 \u975e\u79fb\u690d"}},"text\/plain":{"ja":{"P275":"CC BY-SA 3.0 \u975e\u79fb\u690d"}}}}" class="wbmi-entityview-statementsGroup wbmi-entityview-statementsGroup-P275 oo-ui-layout oo-ui-panelLayout oo-ui-panelLayout-framed">


次ページ
記事の検索
おまかせリスト
▼オプションを表示
ブックマーク登録
mixiチェック!
Twitterに投稿
オプション/リンク一覧
話題のニュース
列車運行情報
暇つぶしWikipedia

Size:22 KB
出典: フリー百科事典『ウィキペディア(Wikipedia)
担当:undef