スキル一覧に戻る
plurigrid

bifurcation-generator

by plurigrid

everything is topological chemputer!

2🍴 3📅 2026年1月20日
GitHubで見るManusで実行

SKILL.md


name: bifurcation-generator description: Generate bifurcation diagrams for dynamical systems. Use when visualizing parameter-dependent behavior transitions. version: 1.0.0

Bifurcation Generator

Generates bifurcation diagrams showing how system behavior changes with parameters.

When to Use

  • Visualizing Hopf, pitchfork, saddle-node bifurcations
  • Parameter sweeps in dynamical systems
  • Stability boundary identification

GF(3) Role

PLUS (+1) Generator - creates visual outputs from system parameters.

Quick Examples

# Logistic map bifurcation
import numpy as np
import matplotlib.pyplot as plt

def logistic_bifurcation(r_min=2.5, r_max=4.0, steps=1000):
    r_vals = np.linspace(r_min, r_max, steps)
    x = 0.5
    for r in r_vals:
        for _ in range(100):  # transient
            x = r * x * (1 - x)
        for _ in range(50):   # attractor
            x = r * x * (1 - x)
            yield r, x

Integration with bifurcation (0) skill

This skill (PLUS +1) pairs with bifurcation (ERGODIC 0) for balanced analysis:

  • bifurcation: detects and classifies transitions
  • bifurcation-generator: visualizes parameter space

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です