All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.yamcs.simulation.simulator.DHSHandler Maven / Gradle / Ivy

package org.yamcs.simulation.simulator;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.Vector;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class DHSHandler {

    private static final Logger log = LoggerFactory.getLogger(DHSHandler.class);

    private Vector entries = new Vector<>(100, 100);
    private int currentEntry = 0;

    public DHSHandler() {
        try (BufferedReader in = new BufferedReader(
                new InputStreamReader(DHSHandler.class.getResourceAsStream("/landing_data/DHS.csv")))) {
            String line;
            in.readLine(); // skip column titles

            while ((line = in.readLine()) != null) {
                line = line.replace(',', '.'); // compatible to decimals with comma (e.g. 1,23)
                String[] parts = line.split(";");
                DHSData entry = new DHSData();

                entry.timestamp = new Float(parts[0]).floatValue();
                entry.primBusVoltage1 = new Float(parts[1]).floatValue();
                entry.primBusCurrent1 = new Float(parts[2]).floatValue();
                entry.primBusVoltage2 = new Float(parts[3]).floatValue();
                entry.primBusCurrent2 = new Float(parts[4]).floatValue();
                entry.secBusVoltage2 = new Float(parts[5]).floatValue();
                entry.secBusCurrent2 = new Float(parts[6]).floatValue();
                entry.secBusVoltage3 = new Float(parts[7]).floatValue();
                entry.secBusCurrent3 = new Float(parts[8]).floatValue();

                entries.add(entry);
            }
        } catch (IOException e) {
            System.out.println(e);
        }
        log.info("have {} DHS data records", entries.size());
    }

    public void fillPacket(CCSDSPacket packet) {
        if (entries.isEmpty()) {
            return;
        }

        if (currentEntry >= entries.size()) {
            currentEntry = 0;
        }

        DHSData entry = entries.elementAt(currentEntry++);
        entry.fillPacket(packet, 0);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy