npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

rf-network

v0.3.1

Published

Classes and functions for handling RF/Microwave data from touchstone files

Downloads

7

Readme

RF-Network

A javascript class for holding data from Touchstone v1 files.

Usage

You will need to parse the Touchstone file into a string before using this class. This can be done in browser Javascript with an input of type file, or in node using fs.readFile().

To load the stringified touchstone file into the Network class, use the following.

The filename is passed to the Network constructor to simplify determining the number of ports as well as in error checking.

import Network from 'rf-network'

const network = new Network(touchStoneFileString: string, fileName: string)

network.data // returns an array of network data

Structure of network.data (Updated for v0.2.0)

network.data returns the following Typescript interface

interface NetworkData {
  freq: number[]
  s: math.Complex[][][]
}

network.data.freq is an array of all the frequency points.

network.data.s is a 3-dimensional array. The first and second indeces are the index of the S-parameters. The final dimension contains an array of complex numbers (from the math.js library). This array has equal length to the Network.data.freq, and contains the S-parameter at each frequency.

By default, the S-parameters will be converted to complex number format (R/I format).

The S-parameters are zero-indexed. As an example, if you load an .s2p (two-port) S-parameter file, you would get S21 by accessing network.data.s[1][0].

Properties and Setters

You can currently access the following properties on the Network class.

network.touchstoneText // string text from the touchstone file

network.label // a label for the plot, can be changed with setLabel

network.fileName // the original file name

data // the array of network data
   
nPorts // the number of ports

freqUnit // frequency unit, ie, GHz

paramType // S, Y, Z - currently only supports S-params

z0 - The characteristic impedance   

setLabel(newLabel: string) // give a new label to the plot