Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to get the required data points from CST microwave studio? #1

Open
Tasfia266 opened this issue Apr 1, 2022 · 1 comment
Open

Comments

@Tasfia266
Copy link

I have simulated a breast phantom with two antennas (one transmitter and one receiver) in CST microwave studio and now I want to plot the breast tumor images in Matlab using this toolbox. But I can't figure out how can I extract all the data like antenna location, channel name, scan1, and scan2. Can someone please help me by providing any suggestions? I will be really grateful for any of your help.

@declanol
Copy link
Contributor

declanol commented Apr 1, 2022

You will need the antenna locations in a reference frame, if there are X m between the antennas, you can use:
locations = [0, 0, 0; 0, X, 0];
for example.

The channel names depend on the transmit and receiving antennas used for each channel:
names = [1, 1; 1, 2; 2, 1; 2, 2];
implies that you are using the S11, S12, S21 and S22 signals.

Scan1 should be the signals with the object you are imaging, you will typically need a reference scan without the object for calibration in scan2.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants