Skip to content
Advertisement

making a 3D quiver plot using matplotlib by reading in data

I am trying to make a 3D quiver plot using matplotlib 2.2.5. I provide a simple sample code below to show my attempt. I want to make a quiver plot using fx(x,y,z), fy(x,y,z) and fz(x,y,z). These correspond to the vector field f = (fx,fy,fz). I input the data for fx,fy,fz as 3 .dat files where each .dat file is 1 column of numbers.

JavaScript

The data is generated and stored as follows (using fortran):

JavaScript

Advertisement

Answer

I’m assuming here you are trying to plot the quivers starting from the (origin (0,0,0)).

Using a random sample with coordinates between -1 and 1 (hoping it will match your data sample), this would go this way:

JavaScript

Note that I used a simple “:”: based on your explanation, your .dat files have only one dimension. You use multiples colon only if you have at least 2 dimensions.

JavaScript

If you want to plot starting from your mesh (ie np.linspace), you can alter the code as follow (though I’m not sure this is what you are trying to achieve):

JavaScript

Note: this code has been tested on matplotlib 3.0.1 only

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement