2

Python と matplotlib を使用して LTspice からいくつかのデータをプロットしたいのですが、Python で LTspice からエクスポートされたプロット データをインポートするソリューションを探しています。

データの形式は次のようになるため、Pandas を使用してこれを行う方法が見つかりませんでした。

5.00000000000000e+006\t(2.84545891331278e+001dB,8.85405282381414e+001°)

これを Pandas でインポートする可能性はありますか (たとえば、独自の方言を使用)、または簡単な回避策 (ファイルを 1 行ずつ読み取って値を抽出するなど) を知っている人はいますか?

さらに悪いことに、複数のステップのプロットをエクスポートすると、データは次のような行で区切られます

Step Information: L=410n  (Run: 2/4)

Java では、データを読み取るためにScannerオブジェクトを使用した可能性があります。Python に同様の関数がありますか、それともプロット データを Python に取り込むためのより簡単な方法はありますか?

4

2 に答える 2

1

私は LTspice からエクスポートされたプロット データに慣れていないので、提供された例の行の書式設定が常に有効であると想定しています。

pandas-0.18 ドキュメント (ここ) の IO ツール セクションを見ると、データ形式用のすぐに使用できるパーサー ユーティリティが表示されません。最初に頭に浮かぶのは、パンダのデータフレームに入力する前に、独自の解析と準備を行うことです。

あなたの問題の重要な部分はデータファイルを解析することだと思います.pandasとmatplotlibで遊んでからしばらく経っているので、それらに関連する間違いが予想されます.

これは、データを辞書のリストに解析し、それを使用して pandas データフレームを構築し、DataFrame のメソッドを使用してプロットするための簡単で汚いpython3スクリプトです。plotコメントで手順を説明しようとしました:

# ltspice.py
""" Use it as: 
    > python3 ltspice.py /path/to/datafile """

import pandas
import sys

data_header = "Time Gain Degree".split()

# Valid line example:
# 5.00000000000000e+006\t(2.84545891331278e+001dB,8.85405282381414e+001°) 

def parse_line(linestr):
    # ValueError and IndexError exceptions are used to mark the failure of
    # the parse.
    try:
        # First we split at the '\t' character. This will raise ValueError if
        # there is no \t character or there is more than 1 \t
        timestr, rest = linestr.split('\t')

        # Then we find the indexes of the '(' and ')' in the rest string.
        parenst, parenend = (rest.find('(')+1,  rest.find(')'))
        if (parenst == -1) or (parenend == -1):
            # find() method returns -1 if nothing is found, I raise ValueError
            # to mark it as a parsing failure
            raise ValueError

        # rest[parenst:parenend] returns the string inside parens. split method
        # splits the string into words separated by the given character (i.e.
        # ',')
        powstr, degstr = rest[parenst:parenend].split(',')

        # converting strings into floats. Replacing units as necessary.
        time = float(timestr)
        power = float(powstr.replace('dB', ''))

        # this will fail with python 2.x
        deg = float(degstr.replace('°', ''))

        # You can use dict() instead of tuple()
        return tuple(zip(data_header, (time, power, deg)))

    except (ValueError,IndexError) as e:
        return None


def fileparser(fname):
    """ A generator function to return a parsed line on each iteration """
    with open(fname, mode='r') as fin:
        for line in fin:
            res = parse_line(line)
            if res is not None:
                yield res

def create_dataframe(fname):
    p = fileparser(fname)
    # rec is a tuple of 2-tuples that can be used to directly build a python
    # dictionary
    recs = [dict(rec) for rec in p]
    return pandas.DataFrame.from_records(recs)

if __name__ == '__main__':
    data_fname = sys.argv[1]
    df = create_dataframe(data_fname)

    ax = df.plot(x='Time', y='Gain')
    fig = ax.get_figure()
    fig.savefig('df.png')

このコードをテキスト エディターにコピーして名前を付けて保存し、ターミナルからltspice.py実行できpython3 ltspice.py yourdata.datます。

parse_line関数は実際には ('key', value) の形式で 2 タプルのタプルを返すことに注意してください。ここで、'key' は列名を表します。この値は、create_dataframe関数内の辞書のリストを作成するために使用されます。

追加

動作をテストする別のスクリプトを作成しました。

# test.py
import random
from ltspice import fileparser


def gen_data():
    time = random.randint(0,100)*1e6
    db = random.lognormvariate(2,0.5)
    degree = random.uniform(0,360)
    # this is necessary for comparing parsed values with values generated
    truncate = lambda x: float('{:.15e}'.format(x))
    return (truncate(time),truncate(db),truncate(degree))


def format_data_line(datatpl):
    time, db, degree = datatpl[0], datatpl[1], datatpl[2]
    formatted = "{0:.15e}\t({1:.15e}dB,{2:.15e}°)\n"
    return formatted.format(time, db, degree)


def gen_ignore_line():
    tmpl = "Step Information: L={}n  (Run:{}/{})\n"
    l = random.randint(100,1000)
    r2 = random.randint(1,100)
    r1 = random.randint(0,r2)
    return tmpl.format(l,r1,r2)


def create_test_file(fname, valid_count, invalid_count):
    """ Creates a test file containing data lines mixed with lines to be
    ignored. Returns the data created.
    valid_count: number of the actual data lines
    invalid_count: number of the to-be-ignored lines
    """ 
    header = 'Time Gain Degree'.split()
    data = []
    formatteddatalines = []
    for i in range(valid_count):
        unfmtdata = gen_data()
        data.append(tuple(zip(header, unfmtdata)))
        formatteddatalines.append(format_data_line(unfmtdata))

    invalidlines = []
    for i in range(invalid_count):
        invalidlines.append(gen_ignore_line())

    lines = formatteddatalines + invalidlines
    random.shuffle(lines)
    with open(fname, mode='w') as fout:
        fout.writelines(lines)

    return data

if __name__ == '__main__':
    fname = 'test.data'
    validcnt = 10
    invalidcnt = 2

    validdata = create_test_file(fname, validcnt, invalidcnt)
    parseddata = [data for data in fileparser(fname)]

    # Note: this check ignores duplicates.
    assert(set(validdata) == set(parseddata))
于 2016-07-18T17:51:57.440 に答える
1

LTSpice シミュレーション出力ファイル用の Python リーダーを作成しました。これはLTSPyにあります。リーダーの使用方法に関するいくつかのサンプル ファイルもあります: exltspy.zip。それが役に立つことを願っています。(ずさんなコーディング慣行については、事前にお詫び申し上げます)。

于 2016-10-19T05:18:31.297 に答える